From: Matt Mitchell Date: Mon, 22 Aug 2016 23:14:43 +0000 (-0700) Subject: Fix regex X-Git-Tag: submit/tizen/20210909.063632~11030^2~9612^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2090ef176dee454184ebac14d6f9eede07676063;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix regex Commit migrated from https://github.com/dotnet/coreclr/commit/3ad3ea795991f05ddc821e694b71c6f3c3fa4ed7 --- diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index 3c2988a..7f70279 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/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