Add zchunk image preparation Jenkinsfile
authorJonathan Dieter <jdieter@gmail.com>
Wed, 14 Nov 2018 23:04:04 +0000 (23:04 +0000)
committerJonathan Dieter <jdieter@gmail.com>
Wed, 14 Nov 2018 23:04:04 +0000 (23:04 +0000)
Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
prep-Jenkinsfile [new file with mode: 0644]

diff --git a/prep-Jenkinsfile b/prep-Jenkinsfile
new file mode 100644 (file)
index 0000000..e482f7c
--- /dev/null
@@ -0,0 +1,10 @@
+node {
+    checkout scm
+    stage('Prep') {
+        sh "./autotest/fedora-latest/prep.sh"
+        sh "./autotest/centos-latest/prep.sh"
+        sh "./autotest/opensuse-leap/prep.sh"
+        sh "./autotest/debian-latest/prep.sh"
+        sh "./autotest/ubuntu-rolling/prep.sh"
+    }
+}