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

Commit 98a7f87

Browse files
committed
Add CI PR-triggered Ubuntu x64 innerloop no-tiering job (#19123)
Port of #19123 to 2.2
1 parent fe0f570 commit 98a7f87

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

netci.groovy

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1490,6 +1490,21 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
14901490
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
14911491
break
14921492
}
1493+
// Triggers on the non-flow jobs aren't necessary here
1494+
// Corefx testing uses non-flow jobs.
1495+
if (!isFlowJob && !isCoreFxScenario(scenario)) {
1496+
break
1497+
}
1498+
1499+
if (scenario == 'no_tiered_compilation_innerloop') {
1500+
// Default trigger
1501+
if (configuration == 'Checked') {
1502+
def displayStr = getStressModeDisplayName(scenario)
1503+
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test (Jit - ${displayStr})")
1504+
}
1505+
break
1506+
}
1507+
14931508
// fall through
14941509

14951510
case 'OSX10.12':

0 commit comments

Comments
 (0)