Skip to content

Commit

Permalink
fix premerge CI 2 when condition (#4113)
Browse files Browse the repository at this point in the history
Signed-off-by: Peixin Li <pxli@nyu.edu>
  • Loading branch information
pxLi authored Nov 16, 2021
1 parent 434367b commit dd0dd50
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jenkins/Jenkinsfile-blossom.premerge
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,9 @@ pipeline {
when {
beforeAgent true
beforeOptions true
expression {
major_ver >= 21 && minor_ver >= 8
anyOf {
expression { major_ver >= 21 && minor_ver >= 8 }
expression { major_ver >= 22 }
}
}

Expand Down

0 comments on commit dd0dd50

Please sign in to comment.