Simplify Jenkinsfile since we're no longer doing parallel builds
authorJonathan Dieter <jdieter@gmail.com>
Sat, 14 Mar 2020 21:56:54 +0000 (21:56 +0000)
committerJonathan Dieter <jdieter@gmail.com>
Sat, 14 Mar 2020 21:56:54 +0000 (21:56 +0000)
Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
Jenkinsfile

index c886e93af1207de476672de593763ae7b62f870f..5f3df2da56473dc71ca6b6140e40a48ff4a98062 100644 (file)
@@ -1,43 +1,19 @@
 node {
     checkout scm
     stage('Build') {
-        fedora: {
-            sh "./autotest/fedora-latest/build.sh"
-        },
-        centos: {
-            sh "./autotest/centos-7/build.sh"
-        },
-        opensuse: {
-            sh "./autotest/opensuse-leap/build.sh"
-        },
-        alpine: {
-            sh "./autotest/alpine-edge/build.sh"
-        },
-        debian: {
-            sh "./autotest/debian-latest/build.sh"
-        },
-        ubuntu: {
-            sh "./autotest/ubuntu-rolling/build.sh"
-        }
+        sh "./autotest/fedora-latest/build.sh"
+        sh "./autotest/centos-7/build.sh"
+        sh "./autotest/opensuse-leap/build.sh"
+        sh "./autotest/alpine-edge/build.sh"
+        sh "./autotest/debian-latest/build.sh"
+        sh "./autotest/ubuntu-rolling/build.sh"
     }
     stage('Test') {
-        fedora: {
-            sh "./autotest/fedora-latest/test.sh"
-        },
-        centos: {
-            sh "./autotest/centos-7/test.sh"
-        },
-        opensuse: {
-            sh "./autotest/opensuse-leap/test.sh"
-        },
-        alpine: {
-            sh "./autotest/alpine-edge/test.sh"
-        },
-        debian: {
-            sh "./autotest/debian-latest/test.sh"
-        },
-        ubuntu: {
-            sh "./autotest/ubuntu-rolling/test.sh"
-        }
+        sh "./autotest/fedora-latest/test.sh"
+        sh "./autotest/centos-7/test.sh"
+        sh "./autotest/opensuse-leap/test.sh"
+        sh "./autotest/alpine-edge/test.sh"
+        sh "./autotest/debian-latest/test.sh"
+        sh "./autotest/ubuntu-rolling/test.sh"
     }
 }