Nanostack Border Router is a generic mbed border router implementation that provides the 6LoWPAN ND or Thread border router initialization logic.

Revision:
101:5fa704b51e88
Parent:
92:7faf6dcb791f
--- a/Jenkinsfile	Tue Jul 23 12:07:00 2019 +0100
+++ b/Jenkinsfile	Tue Aug 06 16:02:16 2019 +0100
@@ -18,13 +18,12 @@
 def targets = [
   "K64F",
   "K66F",
-  "NUCLEO_F429ZI"
+  "DISCO_F769NI"
   ]
 
 // Map toolchains to CI labels
 def toolchains = [
-  ARM: "armcc",
-//  ARMC6: "armc6",
+  ARM: "armc6",
   GCC_ARM: "arm-none-eabi-gcc",
   IAR: "iar_arm"
   ]
@@ -49,8 +48,8 @@
       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 and Wi-SUN configuration exist only for K64F
-      if ((configurationLabel == "THREAD_SLIP" || configurationLabel == "WI_SUN") && target != "K64F") {
+      // SLIP configuration exist only for K64F based Raspberry HAT
+      if ((configurationLabel == "THREAD_SLIP") && target != "K64F") {
         continue;
       }
       stepsForParallel[stepName] = buildStep(target, compilerLabel, configurationFile, configurationLabel, toolchain)
@@ -69,6 +68,7 @@
         deleteDir()
         dir("nanostack-border-router") {
           checkout scm
+          execute("git clean -ffdx")
           execute("mbed deploy --protocol ssh")
           // Update mbed-os revision if requested
           if (params.mbed_os_revision != '') {