mbed-os-examples / Mbed OS nanostack-border-router-mbed5
Revision:
17:fbeba6669995
Parent:
6:3c1f873ebe0b
Child:
31:11a6bfef0d31
--- a/Jenkinsfile	Thu Jun 01 09:30:34 2017 +0100
+++ b/Jenkinsfile	Wed Jun 07 09:00:30 2017 +0100
@@ -1,7 +1,8 @@
 // List of targets to compile
 def targets = [
   "K64F",
-  "K66F"
+  "K66F",
+  "NUCLEO_F429ZI"
   ]
 
 // Map toolchains to compilers
@@ -30,6 +31,10 @@
       def configurationLabel = configurations.keySet().asList().get(k)
       def configurationFile = configurations.get(configurationLabel)
       def stepName = "${target} ${configurationLabel} ${toolchain}"
+      // SLIP configuration exist only for K64F based Raspberry HAT
+      if (configurationLabel == "THREAD_SLIP" && target != "K64F") {
+        continue;
+      }
       stepsForParallel[stepName] = buildStep(target, compilerLabel, configurationFile, configurationLabel, toolchain)
     }
   }