diff options
author | Jarret Shook <jashoo@microsoft.com> | 2018-01-26 10:52:20 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-26 10:52:20 -0800 |
commit | d08b5fd08ea73bebe4acd1af842ef8f212429944 (patch) | |
tree | 935ce8aca23e8f086f4c0c01aea39b4104cfb882 | |
parent | cb250bf00d10417b57559c86560a76975574b247 (diff) | |
parent | 30f58523c1bed3049ed0f1b4f27aa851dd706408 (diff) | |
download | coreclr-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-x | netci.groovy | 4 |
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") |