
Nanostack Border Router is a generic mbed border router implementation that provides the 6LoWPAN ND or Thread border router initialization logic.
Diff: Jenkinsfile
- Revision:
- 92:7faf6dcb791f
- Parent:
- 82:3d9e3b7b3dcf
- Child:
- 101:5fa704b51e88
--- a/Jenkinsfile Tue Feb 26 09:02:40 2019 +0000 +++ b/Jenkinsfile Mon Mar 04 09:02:42 2019 +0000 @@ -33,7 +33,8 @@ def configurations = [ LOWPAN: "6lowpan_Atmel_RF.json", THREAD: "Thread_Atmel_RF.json", - THREAD_SLIP: "Thread_SLIP_Atmel_RF.json" + THREAD_SLIP: "Thread_SLIP_Atmel_RF.json", + WI_SUN: "Wisun_Stm_s2lp_RF.json" ] def stepsForParallel = [:] @@ -48,8 +49,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 - if (configurationLabel == "THREAD_SLIP" && target != "K64F") { + // 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") { continue; } stepsForParallel[stepName] = buildStep(target, compilerLabel, configurationFile, configurationLabel, toolchain)