Changeset 2fa483c for Jenkinsfile
- Timestamp:
- Jul 27, 2018, 3:50:41 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 6fb1921
- Parents:
- 0759ba0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r0759ba0 r2fa483c 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.