Changeset b015035 for Jenkinsfile


Ignore:
Timestamp:
Jun 21, 2016, 6:01:52 PM (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:
8b52686
Parents:
df42128
Message:

Updated jenkins compilation to only use 1 compiler on pushes and update usage of tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    rdf42128 rb015035  
    3333                dir ('src/tests') {
    3434                        if (full_build) {
    35                                 sh 'python test.py --all'
     35                                sh 'make all-tests'
    3636                        }
    3737                        else {
    38                                 sh './runTests.sh'
     38                                sh 'make'
    3939                        }
    4040                }
     
    188188                                cfa_build(doPromoteBuild2DoLang)
    189189
    190                                 //Compile using gcc-5
    191                                 currentCC = new CC_Desc('gcc-5', 'g++-5', 'gcc-5')
    192                                 cfa_build(doPromoteBuild2DoLang)
    193 
    194                                 //Compile using gcc-4.9
    195                                 currentCC = new CC_Desc('gcc-6', 'g++-6', 'gcc-6')
    196                                 cfa_build(doPromoteBuild2DoLang)
     190                                if( doPromoteBuild2DoLang ) {
     191                                        //Compile using gcc-5
     192                                        currentCC = new CC_Desc('gcc-5', 'g++-5', 'gcc-5')
     193                                        cfa_build(true)
     194
     195                                        //Compile using gcc-4.9
     196                                        currentCC = new CC_Desc('gcc-6', 'g++-6', 'gcc-6')
     197                                        cfa_build(true)
     198                                }
    197199
    198200                                //Compile latex documentation
Note: See TracChangeset for help on using the changeset viewer.