Add new verify / merge jobs for zuul 78/378/2
authorAndrew Grimberg <[email protected]>
Mon, 22 Feb 2016 19:43:14 +0000 (11:43 -0800)
committerAndrew Grimberg <[email protected]>
Mon, 22 Feb 2016 19:46:56 +0000 (11:46 -0800)
We need jobs to be able to manage zuul layout changes. This brings those
jobs in

Change-Id: If6397b0d7f52edc7f2668a2351c35e637ef92888
Signed-off-by: Andrew Grimberg <[email protected]>
jjb/ci-management/ci-management-jobs.yaml
jjb/ci-management/include-raw-merge-zuul.sh [new file with mode: 0644]
jjb/ci-management/include-raw-test-zuul.sh [new file with mode: 0644]

index fb5de57..d9d2298 100644 (file)
@@ -3,6 +3,8 @@
     jobs:
         - 'ci-management-verify-jjb'
         - 'ci-management-merge-jjb'
+        - 'ci-management-verify-zuul'
+        - 'ci-management-merge-zuul'
 
 - job-template:
     name: ci-management-verify-jjb
 
     builders:
         - shell:
-            !include-raw-escape include-raw-jjb-update.sh
+            !include-raw-escape: include-raw-jjb-update.sh
 
+- job-template:
+    name: ci-management-verify-zuul
+
+    project-type: freestyle
+    node: jjb
+    concurrent: true
+
+    logrotate:
+        daysToKeep: 30
+        numToKeep: 10
+        artifactDaysToKeep: -1
+        artifactNumToKeep: 5
+
+    scm:
+        - zuul-trigger-scm:
+            credentials-id: '{ssh-credentials}'
+            refspec: '$ZUUL_REF'
+            commit: '$ZUUL_COMMIT'
+
+    wrappers:
+        - ssh-agent-credentials:
+            users:
+                - '{ssh-credentials}'
+
+    builders:
+        - shell:
+            !include-raw-escape: include-raw-test-zuul.sh
+
+- job-template:
+    name: ci-management-merge-zuul
+
+    project-type: freestyle
+    node: jjb
+
+    logrotate:
+        daysToKeep: 30
+        numToKeep: 40
+        artifactDaysToKeep: -1
+        artifactNumToKeep: 5
+
+    scm:
+        - zuul-trigger-scm:
+            credentials-id: '{ssh-credentials}'
+            refspec: ''
+            commit: 'origin/$ZUUL_BRANCH'
+
+    wrappers:
+        - ssh-agent-credentials:
+            users:
+                - '{ssh-credentials}'
+
+    builders:
+        - shell:
+            !include-raw-escape: include-raw-test-zuul.sh
+        - shell:
+            !include-raw-escape: include-raw-merge-zuul.sh
diff --git a/jjb/ci-management/include-raw-merge-zuul.sh b/jjb/ci-management/include-raw-merge-zuul.sh
new file mode 100644 (file)
index 0000000..57456f6
--- /dev/null
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+# vi: sw=4 ts=4 sts=4 et :
+
+cd "${WORKSPACE}/zuul"
+/usr/bin/diff layout.yaml /etc/zuul/layout.yaml
+RET=$?
+if [ "${RET}" -ne '0' ]
+then
+    echo
+    echo 'Zuul layouts differ, updating layout and reloading zuul'
+    echo
+    /usr/bin/sudo /usr/bin/cp layout.yaml /etc/zuul/layout.yaml
+    /usr/bin/sudo /usr/bin/systemctl reload zuul
+fi
+
diff --git a/jjb/ci-management/include-raw-test-zuul.sh b/jjb/ci-management/include-raw-test-zuul.sh
new file mode 100644 (file)
index 0000000..24e0a8f
--- /dev/null
@@ -0,0 +1,17 @@
+#!/bin/bash -e
+
+# activate the zuul virtual env on system that has tox installed
+source /opt/venv-zuul/bin/activate
+
+rm -rf .test
+mkdir .test
+cd .test
+
+# track the upstream zuul HEAD, this may be honestly a little risky
+# but the validations shouldn't fail often due to upstream changes
+git clone https://github.com/openstack-infra/zuul --depth 1
+cd zuul
+
+# calling tox will actually build out a new virtualenv and use that
+# which is honestly a little silly... but whatever
+tox -e validate-layout $WORKSPACE/zuul/layout.yaml