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:
- 34:bc1827b97c5e
- Parent:
- 32:8b28e79d2ed0
- Child:
- 44:253c7094c7e9
--- a/Jenkinsfile Mon Jan 09 12:00:11 2017 +0000
+++ b/Jenkinsfile Tue Jan 17 10:45:10 2017 +0000
@@ -36,7 +36,7 @@
//"NCS36510": ["NCS36510"],
"UBLOX_EVK_ODIN_W2": ["ATMEL"]
]
-
+
// Map toolchains to compilers
def toolchains = [
ARM: "armcc",
@@ -56,7 +56,7 @@
"6lp",
"thd"
]
-
+
def stepsForParallel = [:]
// Jenkins pipeline does not support map.each, we need to use oldschool for loop
@@ -88,7 +88,7 @@
def parallelRunSmoke = [:]
// Need to compare boolean against string value
-if ( params.smoke_test == "true" ) {
+if ( params.smoke_test == true ) {
// Generate smoke tests based on suite amount
for(int i = 0; i < raas.size(); i++) {
def suite_to_run = raas.keySet().asList().get(i)