Changeset b015035 for Jenkinsfile
- Timestamp:
- Jun 21, 2016, 6:01:52 PM (8 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rdf42128 rb015035 33 33 dir ('src/tests') { 34 34 if (full_build) { 35 sh ' python test.py --all'35 sh 'make all-tests' 36 36 } 37 37 else { 38 sh ' ./runTests.sh'38 sh 'make' 39 39 } 40 40 } … … 188 188 cfa_build(doPromoteBuild2DoLang) 189 189 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 } 197 199 198 200 //Compile latex documentation
Note: See TracChangeset
for help on using the changeset viewer.