Merge pull request #334 from ARMmbed/revert-309-update_jenkinsfile

Revert "Update Jenkinsfile to support IAR and ARMCC"
Mihail Stoyanov 2016-06-13 18:57:41 +01:00 committed by GitHub
commit 30954700f3
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -8,14 +8,14 @@ def morpheusTargets = [
// Map morpheus toolchains to compiler labels on Jenkins // Map morpheus toolchains to compiler labels on Jenkins
def toolchains = [ def toolchains = [
ARM: "armcc", //ARM: "armcc",
IAR: "iar_arm", //IAR: "iar_arm",
GCC_ARM: "arm-none-eabi-gcc" GCC_ARM: "arm-none-eabi-gcc"
] ]
// Initial maps for parallel build steps // Initial maps for parallel build steps
def stepsForParallel = [:] def stepsForParallel = [:]
// Jenkins pipeline does not support map.each, we need to use oldschool for loop // Jenkins pipeline does not support map.each, we need to use oldschool for loop
for (int i = 0; i < morpheusTargets.size(); i++) { for (int i = 0; i < morpheusTargets.size(); i++) {
for(int j = 0; j < toolchains.size(); j++) { for(int j = 0; j < toolchains.size(); j++) {