Changes in Jenkinsfile [f37279b:02559df]
- File:
-
- 1 edited
-
Jenkinsfile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rf37279b r02559df 277 277 build_stage('Test') { 278 278 279 dir ('build/src/tests') { 280 //Run the tests from the tests directory 281 if ( do_alltests ) { 282 sh 'make all-tests debug=yes --no-print-directory' 283 sh 'make all-tests debug=no --no-print-directory' 284 } 285 else { 286 sh 'make --no-print-directory' 287 } 279 //Run the tests from the tests directory 280 if ( do_alltests ) { 281 sh 'make -C build/src/tests all-tests debug=yes --no-print-directory' 282 sh 'make -C build/src/tests all-tests debug=no --no-print-directory' 283 } 284 else { 285 sh 'make -C build/src/tests --no-print-directory' 288 286 } 289 287 } … … 296 294 297 295 //Append bench results 298 sh 'make -C src/benchmark --no-print-directory jenkins githash=' + gitRefNewValue + ' arch=' + arch_name + ' | tee bench.json'296 sh 'make -C build/src/benchmark --no-print-directory jenkins githash=' + gitRefNewValue + ' arch=' + arch_name + ' | tee bench.json' 299 297 } 300 298 }
Note:
See TracChangeset
for help on using the changeset viewer.