Changeset 944a90f for Jenkinsfile


Ignore:
Timestamp:
Jul 30, 2018, 11:27:44 AM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
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:
ad486c5b
Parents:
7fb69f6 (diff), a4248de1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r7fb69f6 r944a90f  
    277277        build_stage('Test') {
    278278
    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'
    288286                }
    289287        }
     
    296294
    297295                //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'
    299297        }
    300298}
Note: See TracChangeset for help on using the changeset viewer.