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') {