summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorjashook <jashoo@microsoft.com>2018-01-26 09:08:43 -0800
committerjashook <jashoo@microsoft.com>2018-01-26 10:43:20 -0800
commit30f58523c1bed3049ed0f1b4f27aa851dd706408 (patch)
tree935ce8aca23e8f086f4c0c01aea39b4104cfb882 /netci.groovy
parentcb250bf00d10417b57559c86560a76975574b247 (diff)
downloadcoreclr-30f58523c1bed3049ed0f1b4f27aa851dd706408.tar.gz
coreclr-30f58523c1bed3049ed0f1b4f27aa851dd706408.tar.bz2
coreclr-30f58523c1bed3049ed0f1b4f27aa851dd706408.zip
Use centOS Checked jobs
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index fe679c0175..8153cde247 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -190,7 +190,7 @@ class Constants {
'CentOS7.1': [
'x64': [
'Debug',
- 'Release'
+ 'Checked'
]
],
'OSX10.12': [
@@ -1361,7 +1361,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
}
// Make sure this is a flow job to get build and test.
- if (configuration == 'Release' && isFlowJob) {
+ if (configuration == 'Checked' && isFlowJob) {
assert job.name.contains("flow")
// Default trigger
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Innerloop Build and Test")