Skip to content

Commit

Permalink
logic to skip building 2.6.9 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
chubing authored May 11, 2022
1 parent d1e3c74 commit 47a0008
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 47a0008

Please sign in to comment.