Skip to content

Commit

Permalink
Fix Jenkins skip for CPU/GPU (apache#9549)
Browse files Browse the repository at this point in the history
Each step should be checking the docs-only build and marking itself as skipped if necessary, these two were skipping the i386 step instead.

Co-authored-by: driazati <[email protected]>
  • Loading branch information
2 people authored and ylc committed Jan 13, 2022
1 parent 07318bf commit e101d52
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 @@ -320,7 +320,7 @@ stage('Unit Test') {
}
}
} else {
Utils.markStageSkippedForConditional('python3: i386')
Utils.markStageSkippedForConditional('python3: GPU')
}
},
'python3: CPU': {
Expand All @@ -337,7 +337,7 @@ stage('Unit Test') {
}
}
} else {
Utils.markStageSkippedForConditional('python3: i386')
Utils.markStageSkippedForConditional('python3: CPU')
}
},
'python3: i386': {
Expand Down

0 comments on commit e101d52

Please sign in to comment.