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:
- 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)
}
}