also install latest jjb version with pip.
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: I5fd788ece16a410272434fcf25dd2545be4ba863
name: ci-management-verify-jjb
project-type: freestyle
- node: master
+ node: control-slave
concurrent: true
parameters:
files: '**/**'
builders:
- - shell: |
- ls -alh ; jenkins-jobs test --recursive jjb/
+ - shell:
+ !include-raw-escape: include-raw-jjb-update.sh
- ci-management-check-unicode
- job-template:
name: 'ci-management-merge'
project-type: freestyle
- node: master
+ node: control-slave
build-discarder:
days-to-keep: 30
+#!/bin/bash
+
+curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
+python3 get-pip.py --user
+export PATH=/home/jenkins/.local/bin:$PATH
+
+pip3 install --user jenkins-job-builder
+
jenkins-jobs update --delete-old --recursive jjb/
# Submit patches for any jobs that can be auto updated
--- /dev/null
+#!/bin/bash
+curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
+python3 get-pip.py --user
+export PATH=/home/jenkins/.local/bin:$PATH
+
+pip3 install --user jenkins-job-builder
+
+ls -alh
+jenkins-jobs test --recursive jjb/