diff options
author | Jarret Shook <jashoo@microsoft.com> | 2017-07-20 13:46:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-20 13:46:38 -0700 |
commit | 39cd3cfcb078154f9b595ae476f2c5fb7b445e18 (patch) | |
tree | 56e164bd6579688e2713e2dd93ec4fd4cd58b50e | |
parent | ddba2ff091aaa6be76e181f244f76a17ffb8cd8b (diff) | |
parent | e76aaea3c4d12ce6c78d42f126500172e9a0366b (diff) | |
download | coreclr-39cd3cfcb078154f9b595ae476f2c5fb7b445e18.tar.gz coreclr-39cd3cfcb078154f9b595ae476f2c5fb7b445e18.tar.bz2 coreclr-39cd3cfcb078154f9b595ae476f2c5fb7b445e18.zip |
Merge pull request #12960 from jashook/stop_arm64_default_jobs
Add the correct job name and regex to arm64 ubuntu flow jobs
-rwxr-xr-x | netci.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy index b6d3a1d6d1..f5d37004ea 100755 --- a/netci.groovy +++ b/netci.groovy @@ -1207,7 +1207,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, switch (scenario) { case 'default': if (isFlowJob == true) { - Utilities.addGithubPRTriggerForBranch(job, branch, "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*") + Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration}", "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*") } // For now only run Debug jobs on PR Trigger. |