Skip to content

Commit

Permalink
Merge branch 'master' into 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
bonita-ci committed Feb 21, 2020
2 parents aeb81db + 560fdad commit 1ae7462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ timestamps {
stage('Build') {
try {
def currentBranch = env.BRANCH_NAME
def isBaseBranch = currentBranch == 'master' || currentBranch == 'dev'
def isBaseBranch = currentBranch == 'master' || currentBranch == 'dev' || currentBranch?.startsWith('release-')
if(!isBaseBranch){
sh "./mvnw -B clean verify -Djvm=${env.JAVA_HOME_11}/bin/java"
}else{
Expand Down

0 comments on commit 1ae7462

Please sign in to comment.