summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorMatt Mitchell <matchell@outlook.com>2016-04-07 10:30:18 -0700
committerMatt Mitchell <matchell@outlook.com>2016-04-07 10:30:18 -0700
commit5517ea5bdc230efad97f1912e931f18326a466f6 (patch)
treee46175a8d35f4c081ebb421991f9bacc8038c91c /netci.groovy
parent50ea585d52cd4cf49a7ccb2df6b9dcc19437493b (diff)
downloadcoreclr-5517ea5bdc230efad97f1912e931f18326a466f6.tar.gz
coreclr-5517ea5bdc230efad97f1912e931f18326a466f6.tar.bz2
coreclr-5517ea5bdc230efad97f1912e931f18326a466f6.zip
Trigger phrase currently has invalid regex
Should be double quoted for string interpolation
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index 0b58b69b8c..1337266bbc 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -410,11 +410,11 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
case 'RHEL7.2':
if (scenario == 'default') {
assert !isFlowJob
- Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", '(?i).*test\\W+${os}.*')
+ Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}.*")
}
else if (scenario == 'pri1' && isFlowJob) {
assert (configuration == 'Release')
- Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Pri 1 Build & Test", '(?i).*test\\W+${os}\\W+${scenario}.*')
+ Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Pri 1 Build & Test", "(?i).*test\\W+${os}\\W+${scenario}.*")
}
break
case 'Ubuntu15.10':