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); - } - - } - } -} - -