Changeset e6b862d for Jenkinsfile
- Timestamp:
- Feb 22, 2017, 3:12:13 PM (8 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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 654d2228
- Parents:
- 0370b9b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r0370b9b re6b862d 147 147 architecture = architecture_from_params( pArchitecture ) 148 148 149 do_alltests = pRunAllTests.toBoolean()150 do_benchmark = pRunBenchmark.toBoolean()151 do_doc = pBuildDocumentation.toBoolean()152 do_publish = pPublish.toBoolean()153 do_sendemail = ! pSilent.toBoolean()149 do_alltests = (pRunAllTests == 'true') 150 do_benchmark = (pRunBenchmark == 'true') 151 do_doc = (pBuildDocumentation == 'true') 152 do_publish = (pPublish == 'true') 153 do_sendemail = ! (pSilent == 'true') 154 154 155 155 echo """Compiler : ${compiler.name} (${compiler.cpp_cc}/${compiler.cfa_cc})
Note: See TracChangeset
for help on using the changeset viewer.