Skip to content

Commit

Permalink
Update Jenkinsfile for 0.4.1.x release
Browse files Browse the repository at this point in the history
  • Loading branch information
AionJayT committed Aug 7, 2019
1 parent 021e814 commit 24bd7fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pipeline {
when {
expression {
GIT_BRANCH == 'master' ||
GIT_BRANCH == 'master-pre-merge'
GIT_BRANCH == 'v0.4.1.x'
}
}

Expand Down Expand Up @@ -47,7 +47,7 @@ pipeline {
// only run if:
// - this branch is in a PR (env.CHANGE_ID not null), or
// - this branch is master or master-pre-merge
expression { env.CHANGE_ID || GIT_BRANCH == 'master' || GIT_BRANCH == 'master-pre-merge' }
expression { env.CHANGE_ID || GIT_BRANCH == 'master' || GIT_BRANCH == 'v0.4.1.x' }
}
steps {
dir('FunctionalTests') {
Expand Down

0 comments on commit 24bd7fa

Please sign in to comment.