This commit is contained in:
2021-02-21 03:24:50 +01:00
parent 5a19767292
commit b4ef6071aa

View File

@@ -41,7 +41,7 @@ pipeline {
} }
if (BuildThis == true) { if (BuildThis == true) {
stage('Build image') { stage('Build image') {
step { // steps {
// Build script // Build script
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh '''echo "$(date) Do Build for $ImgRelease - $ImgVariant" sh '''echo "$(date) Do Build for $ImgRelease - $ImgVariant"
@@ -52,7 +52,7 @@ pipeline {
''' '''
} }
} }
} //}
} }
} }
} }