From ee9a8486528f40fbf571b9ca0c6dd3c02a17862e Mon Sep 17 00:00:00 2001 From: Michelle McDaniel Date: Tue, 10 Jan 2017 09:48:49 -0800 Subject: [PATCH] Add x86 Release PR Trigger Currently, only checked runs can be triggered for x86. This adds a trigger for release runs as well. --- netci.groovy | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/netci.groovy b/netci.groovy index aefc0a1..1a86bb8 100755 --- a/netci.groovy +++ b/netci.groovy @@ -1216,6 +1216,10 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, if (configuration == 'Checked') { Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test") } + else if (configuration == 'Release') { + Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test", + "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*") + } break case 'pri1': if (configuration == 'Release') { -- 2.7.4