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

Commit 78cc33b

Browse files
committed
Add Checked corefx_innerloop jobs
1 parent 392aa94 commit 78cc33b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

netci.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1743,7 +1743,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
17431743
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} via ILLink", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
17441744
break
17451745
case 'corefx_innerloop':
1746-
if (configuration == 'Release') {
1746+
if (configuration == 'Release' || configuration == 'Checked') {
17471747
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} CoreFX Tests", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*")
17481748
}
17491749
break
@@ -2809,7 +2809,7 @@ def static shouldGenerateJob(def scenario, def isPR, def architecture, def confi
28092809
if (os != 'Windows_NT'|| architecture != 'x64') {
28102810
return false
28112811
}
2812-
if(configuration != 'Release') {
2812+
if(configuration != 'Release' || configuration != 'Checked') {
28132813
return false
28142814
}
28152815
break

0 commit comments

Comments
 (0)