Changeset 7ef1555e for Jenkinsfile


Ignore:
Timestamp:
Jun 20, 2016, 11:53:44 AM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
1f17e07
Parents:
c23e420
Message:

Jenkins now builds all tests when doing a full build

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    rc23e420 r7ef1555e  
    55//===========================================================================================================
    66//Compilation script is done here but environnement set-up and error handling is done in main loop
    7 def cfa_build() {
     7def cfa_build(boolean full_build) {
    88        build_stage 'Checkout'
    99                def install_dir = pwd tmp: true
     
    2828                //Run the tests from the example directory
    2929                dir ('src/tests') {
    30                         sh './runTests.sh'
     30                        if (full_build) {
     31                                sh 'python test.py --all'
     32                        }
     33                        else {
     34                                sh './runTests.sh'
     35                        }
    3136                }
    3237
Note: See TracChangeset for help on using the changeset viewer.