summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2016-03-16 15:24:50 -0700
committerwtgodbe <wigodbe@microsoft.com>2016-03-16 15:24:50 -0700
commit376d2e8469f2806c5a3080ed37838d577e60ae26 (patch)
tree575ee15d44b180c0684e1c099903d1498d524740 /netci.groovy
parent414126e0c0e9d1681b2fe3f71789ef1bbc743a76 (diff)
downloadcoreclr-376d2e8469f2806c5a3080ed37838d577e60ae26.tar.gz
coreclr-376d2e8469f2806c5a3080ed37838d577e60ae26.tar.bz2
coreclr-376d2e8469f2806c5a3080ed37838d577e60ae26.zip
Switch default Windows x64 Release PR test to pri1 in CI
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy5
1 files changed, 3 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index 416e8de085..cf51d24550 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -526,13 +526,14 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
switch (scenario) {
case 'default':
// Default trigger
- if (configuration != 'Checked') {
+ if (configuration == 'Debug') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test")
}
break
case 'pri1':
+ // Default trigger
if (configuration == 'Release') {
- Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Priority 1 Build and Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
+ Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Priority 1 Build and Test")
}
break
case 'ilrt':