Skip to content

Commit

Permalink
Temp: run full CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandraRoatis committed Feb 25, 2020
1 parent d820ab9 commit 94a7cb1
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 @@ -54,7 +54,7 @@ pipeline {
when {
// only run if:
// - this branch is master
expression {GIT_BRANCH == 'master' || GIT_TAG == 'tag'}
expression { env.CHANGE_ID ||GIT_BRANCH == 'master' || GIT_TAG == 'tag'}
}

steps {
Expand All @@ -70,7 +70,7 @@ pipeline {
// - this branch is in a PR (env.CHANGE_ID not null), or
// - this branch is not master
not {
expression {GIT_BRANCH == 'master' || GIT_TAG == 'tag'}
expression { env.CHANGE_ID ||GIT_BRANCH == 'master' || GIT_TAG == 'tag'}
}
}

Expand Down

0 comments on commit 94a7cb1

Please sign in to comment.