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:
- 32:8b28e79d2ed0
- Parent:
- 30:81d713ba997d
- Child:
- 34:bc1827b97c5e
--- a/Jenkinsfile Fri Dec 23 07:15:09 2016 +0000
+++ b/Jenkinsfile Thu Jan 05 13:45:11 2017 +0000
@@ -3,7 +3,7 @@
[$class: 'BooleanParameterDefinition', name: 'smoke_test', defaultValue: false, description: 'Enable to run HW smoke test after building']
]]])
-echo "Run smoke tests: ${smoke_test}"
+echo "Run smoke tests: ${params.smoke_test}"
try {
echo "Verifying build with mbed-os version ${mbed_os_revision}"
@@ -88,7 +88,7 @@
def parallelRunSmoke = [:]
// Need to compare boolean against string value
-if ( 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)