Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit fe0f570

Browse files
noahfalkkouvel
authored andcommitted
Enable the no tiered compilation innerloop PR legs (#18953)
Port of #18953 to 2.2
1 parent 19ff879 commit fe0f570

File tree

1 file changed

+14
-17
lines changed

1 file changed

+14
-17
lines changed

netci.groovy

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1621,14 +1621,13 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
16211621
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")
16221622
}
16231623
break
1624-
//no_tiered_compilation_innerloop will be added as default once it is confirmed working
1625-
//case 'no_tiered_compilation_innerloop':
1626-
// // Default trigger
1627-
// if (configuration == 'Checked') {
1628-
// def displayStr = getStressModeDisplayName(scenario)
1629-
// Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})")
1630-
// }
1631-
// break
1624+
case 'no_tiered_compilation_innerloop':
1625+
// Default trigger
1626+
if (configuration == 'Checked') {
1627+
def displayStr = getStressModeDisplayName(scenario)
1628+
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test (Jit - ${displayStr})")
1629+
}
1630+
break
16321631

16331632
case 'normal':
16341633
if (configuration == 'Checked') {
@@ -1774,8 +1773,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
17741773
break
17751774
}
17761775

1777-
//no_tiered_compilation_innerloop will be added as default once it is confirmed working
1778-
if (scenario == 'innerloop' /*|| scenario == 'no_tiered_compilation_innerloop'*/) {
1776+
if (scenario == 'innerloop' || scenario == 'no_tiered_compilation_innerloop') {
17791777
if (configuration == 'Checked') {
17801778
Utilities.addGithubPRTriggerForBranch(job, branch, contextString)
17811779
}
@@ -1918,13 +1916,12 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
19181916
}
19191917
break
19201918

1921-
//no_tiered_compilation_innerloop will be added as default once it is confirmed working
1922-
//case 'no_tiered_compilation_innerloop':
1923-
// if (configuration == 'Checked') {
1924-
// def displayStr = getStressModeDisplayName(scenario)
1925-
// Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test (Jit - ${displayStr})")
1926-
// }
1927-
// break
1919+
case 'no_tiered_compilation_innerloop':
1920+
if (configuration == 'Checked') {
1921+
def displayStr = getStressModeDisplayName(scenario)
1922+
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test (Jit - ${displayStr})")
1923+
}
1924+
break
19281925

19291926
case 'normal':
19301927
if (configuration == 'Checked') {

0 commit comments

Comments
 (0)