summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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")