Skip to content

Commit 3138a41

Browse files
committed
Enable Navi4x in CI
1 parent 2ccc1bb commit 3138a41

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

mlir/utils/jenkins/Jenkinsfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -414,9 +414,8 @@ boolean shouldRunFromCodepath(String codepath) {
414414
if (params.canXdlops && (params.disableNavi3x == false) && (codepath == "navi3x")) {
415415
return true
416416
}
417-
// Run navi4x on private nightly CI only
418-
if (params.canXdlops && (params.disableNavi4x == false) && (codepath == "navi4x") &&
419-
params.nightly) {
417+
// Run navi4x on private CI if it is not disabled
418+
if (params.canXdlops && (params.disableNavi4x == false) && (codepath == "navi4x")) {
420419
return true;
421420
}
422421
return false

0 commit comments

Comments
 (0)