From fe59ae8b7ff2327c2acd080712f3b4ac5ce9e5fb Mon Sep 17 00:00:00 2001 From: dseefeld Date: Thu, 8 Feb 2018 21:28:09 +0000 Subject: [PATCH] Temporarily diable the ARM build --- netci.groovy | 42 ------------------------------------------ 1 file changed, 42 deletions(-) diff --git a/netci.groovy b/netci.groovy index 8678150528..49d3d02287 100644 --- a/netci.groovy +++ b/netci.groovy @@ -99,45 +99,3 @@ def addPushJob(String project, String branch, String os, String configuration) } } -[true, false].each { isPR -> - ["Linux_ARM"].each { os-> - ["Release", "Debug"].each { configuration -> - - def shortJobName = "${os}_${configuration}"; - def contextString = "${os} ${configuration}"; - def triggerPhrase = "(?i).*test\\W+${contextString}.*"; - - def newJob = job(Utilities.getFullJobName(project, shortJobName, isPR)){ - steps{ - shell("git submodule update --init --recursive"); - shell("./init-tools.sh") - if(os == "Linux_ARM"){ - shell("./arm-ci.sh arm ./build.sh /p:Platform=arm /p:Configuration=${configuration} ${loggingOptions}") - } - if(os == "Tizen"){ - shell("./arm-ci.sh armel ./build.sh /p:Platform=armel /p:Configuration=${configuration} ${loggingOptions}") - } - } - } - - Utilities.setMachineAffinity(newJob, 'Ubuntu', 'arm-cross-latest'); - - Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}"); - if(isPR){ - //We run Tizen Release and Ubuntu ARM Release - if(configuration == "Release"){ - Utilities.addGithubPRTriggerForBranch(newJob, branch, contextString); - } - else{ - Utilities.addGithubPRTriggerForBranch(newJob, branch, contextString, triggerPhrase); - } - } - else{ - Utilities.addGithubPushTrigger(newJob); - } - - } - } -} - -