From 6be32b2679aac32eae2299905506c119e4b65aca Mon Sep 17 00:00:00 2001 From: jashook Date: Fri, 23 Mar 2018 09:33:57 -0700 Subject: Disable armlb windows jobs --- netci.groovy | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'netci.groovy') diff --git a/netci.groovy b/netci.groovy index 6b45ff7014..b8aff27309 100755 --- a/netci.groovy +++ b/netci.groovy @@ -1530,6 +1530,11 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os, break case 'Windows_NT': + if (architecture == "armlb") { + // Disable armlb windows jobs + break + } + // Triggers on the non-flow jobs aren't necessary here if (!isFlowJob) { break @@ -2251,9 +2256,8 @@ Constants.allScenarios.each { scenario -> } break case 'armlb': - if (os != 'Windows_NT') { - return - } + // Do not create armlb jobs + return break case 'x86': if ((os != 'Ubuntu') && (os != 'Windows_NT')) { @@ -2534,10 +2538,13 @@ Constants.allScenarios.each { scenario -> if (os != "Ubuntu" && os != "Windows_NT") { return } - } else if (architecture == 'arm' || architecture == 'armlb') { + } else if (architecture == 'arm') { if (os != 'Windows_NT') { return } + } else if (architecture == 'armlb') { + // Do not create armlb windows jobs. + return } else if (architecture == 'x86') { if (os != "Ubuntu") { return -- cgit v1.2.3