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

Commit 6613a06

Browse files
committed
Ad PR Triggers for Ubuntu and OSX10.12
1 parent 9d6de38 commit 6613a06

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

netci.groovy

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1565,6 +1565,14 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
15651565
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
15661566
break
15671567
}
1568+
1569+
else if (scenario == 'corefx_innerloop') {
1570+
if (configuration == 'Release' || configuration == 'Checked') {
1571+
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} CoreFX Tests")
1572+
}
1573+
break
1574+
}
1575+
15681576
// fall through
15691577

15701578
case 'OSX10.12':
@@ -1626,6 +1634,12 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
16261634
}
16271635
break
16281636

1637+
case 'corefx_innerloop':
1638+
if (configuration == 'Release' || configuration == 'Checked') {
1639+
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} CoreFX Tests")
1640+
}
1641+
break
1642+
16291643
default:
16301644
if (isJitStressScenario(scenario)) {
16311645
def displayStr = getStressModeDisplayName(scenario)
@@ -2817,7 +2831,7 @@ def static shouldGenerateJob(def scenario, def isPR, def architecture, def confi
28172831
}
28182832
break
28192833
case 'corefx_innerloop':
2820-
if (os != 'Windows_NT' || os != 'Ubuntu' || os != 'OSX10.12' || architecture != 'x64') {
2834+
if ( (os != 'Windows_NT' && os != 'Ubuntu' && os != 'OSX10.12') || architecture != 'x64') {
28212835
return false
28222836
}
28232837
if(configuration != 'Release' && configuration != 'Checked') {

0 commit comments

Comments
 (0)