From 71efe7755828ca2e64664b555adf1c86bae2f3fe Mon Sep 17 00:00:00 2001 From: Gaurav Khanna Date: Sat, 15 Oct 2016 20:57:00 -0700 Subject: [PATCH] Only run Debug and Release WinArm32 PR Builds --- netci.groovy | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/netci.groovy b/netci.groovy index 9b114ca..381e3c8 100755 --- a/netci.groovy +++ b/netci.groovy @@ -1090,7 +1090,10 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, } break case 'Windows_NT': - Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build") + if (configuration == 'Debug' || configuration == 'Release') + { + Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} Cross ${configuration} Build") + } break default: println("NYI os: ${os}"); -- 2.7.4