summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Keldorph <Russ.Keldorph@microsoft.com>2016-11-23 20:54:36 -0800
committerRuss Keldorph <Russ.Keldorph@microsoft.com>2016-11-23 20:54:36 -0800
commitf842fa92ad1a75280fe25ecd11b5459a41ee0a61 (patch)
tree4772f13348034fb4d4aae36c57d55feded5e5cca
parentdb767b8674b25e130f82344a3b568c1fffca7661 (diff)
downloadcoreclr-f842fa92ad1a75280fe25ecd11b5459a41ee0a61.tar.gz
coreclr-f842fa92ad1a75280fe25ecd11b5459a41ee0a61.tar.bz2
coreclr-f842fa92ad1a75280fe25ecd11b5459a41ee0a61.zip
Remove non-RyuJIT default PR triggers
These jobs are failing and shouldn't be triggered on PRs
-rwxr-xr-xnetci.groovy9
1 files changed, 6 insertions, 3 deletions
diff --git a/netci.groovy b/netci.groovy
index 0c9409d52f..b1ffaf8084 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1425,12 +1425,14 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
switch (scenario) {
case 'default':
if (configuration == 'Checked') {
- Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${arch} ${jit} ${configuration} Build and Test")
+ Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${arch} ${jit} ${configuration} Build and Test",
+ "(?i).*test\\W+${os}\\W+${arch}\\W+${jit}\\W+${configuration}.*")
}
break
case 'pri1':
if (configuration == 'Release') {
- Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${arch} ${jit} ${configuration} Priority 1 Build and Test")
+ Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${arch} ${jit} ${configuration} Priority 1 Build and Test",
+ "(?i).*test\\W+${os}\\W+${arch}\\W+${jit}\\W+${configuration}\\W+Priority 1 Build and Test.*")
}
break
case 'ilrt':
@@ -1622,7 +1624,8 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
switch (scenario) {
case 'default':
if (configuration == 'Checked') {
- Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${arch} ${jit} ${configuration} Build and Test")
+ Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${arch} ${jit} ${configuration} Build and Test",
+ "(?i).*test\\W+${os}\\W+${arch}\\W+${jit}\\W+${configuration}.*")
}
break
case 'r2r':