summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorjashook <jashoo@microsoft.com>2017-07-19 09:48:35 -0700
committerjashook <jashoo@microsoft.com>2017-07-19 22:05:22 -0700
commit80984930f102ec26cc5d5a5dc711927ae8071899 (patch)
tree7d5e0ed3b92bb5c8c43f555dd66d78c19cae262b /netci.groovy
parent4a89acc886703c047833ed9f705faa4857a14225 (diff)
downloadcoreclr-80984930f102ec26cc5d5a5dc711927ae8071899.tar.gz
coreclr-80984930f102ec26cc5d5a5dc711927ae8071899.tar.bz2
coreclr-80984930f102ec26cc5d5a5dc711927ae8071899.zip
Fix auto starting arm64 ubuntu jobs
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy6
1 files changed, 5 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index 93362dea2a..0843a1e33b 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1204,8 +1204,12 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
case 'Windows_NT':
switch (scenario) {
case 'default':
+ if (isFlowJob == true) {
+ Utilities.addGithubPRTriggerForBranch(job, branch, "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*")
+ }
+
// For now only run Debug jobs on PR Trigger.
- if (configuration != 'Debug') {
+ else if (configuration != 'Debug') {
Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString,
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*", null, arm64Users)
}