From d6b12c1b03c662350c414e92ce2af8d437f955b4 Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Fri, 19 Feb 2021 03:42:40 +0100 Subject: [PATCH] jkf --- Jenkinsfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 07da7ba..17004ae 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -42,11 +42,16 @@ pipeline { } } // all the stages here will run in parallel + stages { + stage('Build') { + steps { // Build script sh '''sudo $WORKSPACE/distrobuilder build-lxc Alpine.yaml $WORKSPACE/REL/$ImgRelease-$ImgVariant/ -o image.release=$ImgRelease -o image.variant=$ImgVariant sudo chown jenkins:jenkins -R $WORKSPACE/REL ''' - + } + } + } } } stage('Finish') {