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:
- 48:67a909e7221b
- Parent:
- 43:fef5b8b23c60
diff -r ab19d1336686 -r 67a909e7221b Jenkinsfile
--- a/Jenkinsfile Mon Sep 23 10:01:56 2019 +0100
+++ b/Jenkinsfile Tue Sep 24 07:01:53 2019 +0100
@@ -78,15 +78,23 @@
stage ("${target}_${compilerLabel}") {
node ("${compilerLabel}") {
deleteDir()
+
+ // Checkout scripts
+ dir("mbed-os-systemtest") {
+ git url: "git@github.com:ARMmbed/mbed-os-systemtest.git", branch:"master"
+ }
+
dir("mbed-os-example-cellular") {
checkout scm
def config_file = "mbed_app.json"
+ // Sets correct SIM PIN and increases trace level for internal tests
+ execute("python ../mbed-os-systemtest/cellular/configuration-scripts/update-mbed-app-json.py")
+
// Configurations for different targets
if ("${target}" == "MTB_ADV_WISE_1570") {
execute("sed -i 's/\"lwip.ppp-enabled\": true,/\"lwip.ppp-enabled\": false,/' ${config_file}")
- execute("sed -i 's/\"platform.default-serial-baud-rate\": 115200,/\"platform.default-serial-baud-rate\": 9600,/' ${config_file}")
}
if ("${target}" == "NRF52840_DK") {