diff options
author | Matt Mitchell <mmitche@microsoft.com> | 2016-08-22 16:14:43 -0700 |
---|---|---|
committer | Matt Mitchell <mmitche@microsoft.com> | 2016-08-22 16:14:43 -0700 |
commit | 3ad3ea795991f05ddc821e694b71c6f3c3fa4ed7 (patch) | |
tree | 4eef8345bfc8ec59c58f7fdec1b46babe196b622 /netci.groovy | |
parent | 098cb9e831b1e2ab1d66355c28c627cc704bbd08 (diff) | |
download | coreclr-3ad3ea795991f05ddc821e694b71c6f3c3fa4ed7.tar.gz coreclr-3ad3ea795991f05ddc821e694b71c6f3c3fa4ed7.tar.bz2 coreclr-3ad3ea795991f05ddc821e694b71c6f3c3fa4ed7.zip |
Fix regex
Diffstat (limited to 'netci.groovy')
-rwxr-xr-x | netci.groovy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy index 3c2988a621..7f702795ac 100755 --- a/netci.groovy +++ b/netci.groovy @@ -1094,13 +1094,13 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, switch (scenario) { case 'default': Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, - "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}", null, arm64Users) + "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*", null, arm64Users) break case 'pri1r2r': case 'gcstress0x3': case 'gcstress0xc': Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString, - "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}", null, arm64Users) + "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}.*", null, arm64Users) break } break |