Skip to content

Commit

Permalink
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Jenkinsfile
@@ -15,7 +15,9 @@ pipeline {
if(env.BRANCH_NAME == "main") {
tag = "latest"
} else if (env.BRANCH_NAME == "2.6.9") {
handleError("skipping docker image build of 2.6.9, not released yet.")
// skip it for now
currentBuild.setResult("SKIPPED")
sh 'exit 1'
} else {
tag = env.BRANCH_NAME
}

0 comments on commit 47a0008

Please sign in to comment.