Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: Jenkinsfile
- Revision:
- 92:7faf6dcb791f
- Parent:
- 82:3d9e3b7b3dcf
- Child:
- 101:5fa704b51e88
diff -r d58d68b11052 -r 7faf6dcb791f Jenkinsfile
--- 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)