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:
- 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 != '') {