We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ccc1bb commit 3138a41Copy full SHA for 3138a41
mlir/utils/jenkins/Jenkinsfile
@@ -414,9 +414,8 @@ boolean shouldRunFromCodepath(String codepath) {
414
if (params.canXdlops && (params.disableNavi3x == false) && (codepath == "navi3x")) {
415
return true
416
}
417
- // Run navi4x on private nightly CI only
418
- if (params.canXdlops && (params.disableNavi4x == false) && (codepath == "navi4x") &&
419
- params.nightly) {
+ // Run navi4x on private CI if it is not disabled
+ if (params.canXdlops && (params.disableNavi4x == false) && (codepath == "navi4x")) {
420
return true;
421
422
return false
0 commit comments