Skip to content

Commit

Permalink
Fix Jenkins skip for CPU/GPU
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.
  • Loading branch information
driazati committed Nov 22, 2021
1 parent ecd8a9c commit 2b25ef4
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 @@ -324,7 +324,7 @@ stage('Unit Test') {
}
}
} else {
Utils.markStageSkippedForConditional('python3: i386')
Utils.markStageSkippedForConditional('python3: GPU')
}
},
'python3: CPU': {
Expand All @@ -341,7 +341,7 @@ stage('Unit Test') {
}
}
} else {
Utils.markStageSkippedForConditional('python3: i386')
Utils.markStageSkippedForConditional('python3: CPU')
}
},
'python3: i386': {
Expand Down

0 comments on commit 2b25ef4

Please sign in to comment.