summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarret Shook <jashoo@microsoft.com>2018-01-26 10:52:20 -0800
committerGitHub <noreply@github.com>2018-01-26 10:52:20 -0800
commitd08b5fd08ea73bebe4acd1af842ef8f212429944 (patch)
tree935ce8aca23e8f086f4c0c01aea39b4104cfb882
parentcb250bf00d10417b57559c86560a76975574b247 (diff)
parent30f58523c1bed3049ed0f1b4f27aa851dd706408 (diff)
downloadcoreclr-d08b5fd08ea73bebe4acd1af842ef8f212429944.tar.gz
coreclr-d08b5fd08ea73bebe4acd1af842ef8f212429944.tar.bz2
coreclr-d08b5fd08ea73bebe4acd1af842ef8f212429944.zip
Merge pull request #16035 from jashook/use_checked_centos
Use centOS Checked jobs
-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")