From 6194067acbc14f950266a4b643f78b4b68d79489 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Wed, 11 Nov 2015 15:24:44 -0800 Subject: [PATCH] Disable x86 windows release build until it passes To trigger in the meantime, say: 'test x86 windows release' --- netci.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netci.groovy b/netci.groovy index c978e20..ade0399 100644 --- a/netci.groovy +++ b/netci.groovy @@ -140,6 +140,8 @@ def static getBuildJobName(def configuration, def architecture, def os) { def triggerByPhraseOnly = true; if (os == 'OpenSUSE13.2' && architecture == 'x64') { triggerPhraseString = '(?i).*test\\W+suse.*' + } else if(architecture == 'x86' && osGroup == 'Windows_NT' && configuration == 'Release') { + triggerPhraseString = '(?i).*test\\W+x86\\W+windows\\W+release.*' } else if (architecture == 'x86' && osGroup == 'Linux') { triggerPhraseString = '(?i).*test\\W+x86\\W+linux.*' } else if (architecture == 'x86' && osGroup == 'OSX') { -- 2.7.4