George Djabarov / Mbed OS mbed-os-example-mesh-minimal
Revision:
27:2b3fc6ca5872
Parent:
26:b28ab71ff595
Child:
29:cb580ede505b
--- a/Jenkinsfile	Mon Nov 28 13:00:12 2016 +0000
+++ b/Jenkinsfile	Thu Dec 01 10:49:01 2016 +0000
@@ -31,7 +31,7 @@
 // List of targets with supported RF shields to compile
 def targets = [
   "K64F": ["ATMEL", "MCR20"],
-  //"NUCLEO_F401RE": ["ATMEL", "MCR20"],
+  "NUCLEO_F401RE": ["ATMEL", "MCR20"],
   "NUCLEO_F429ZI": ["ATMEL", "MCR20"],
   //"NCS36510": ["NCS36510"],
   "UBLOX_EVK_ODIN_W2": ["ATMEL"]
@@ -70,6 +70,12 @@
         def compilerLabel = toolchains.get(toolchain)
         def radioshield = radioshields.get(k)
         def meshInterface = meshinterfaces.get(l)
+
+        // Skip unwanted combination
+        if (target == "NUCLEO_F401RE" && toolchain == "IAR") {
+          continue
+        }
+
         def stepName = "${target} ${toolchain} ${radioshield} ${meshInterface}"
         if(allowed_shields.contains(radioshield)) {
           stepsForParallel[stepName] = buildStep(target, compilerLabel, toolchain, radioshield, meshInterface)