From 8ae27233ae1dc4df6d060e3910be3ba0a80eab26 Mon Sep 17 00:00:00 2001 From: Jonathan Dieter Date: Sat, 14 Mar 2020 21:56:54 +0000 Subject: [PATCH] Simplify Jenkinsfile since we're no longer doing parallel builds Signed-off-by: Jonathan Dieter --- Jenkinsfile | 48 ++++++++++++------------------------------------ 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c886e93..5f3df2d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" } } -- 2.30.2