Changeset ef77d9c for Jenkinsfile
- Timestamp:
- Jun 8, 2016, 3:41:48 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:
- b8f8696
- Parents:
- 8c7994d9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r8c7994d9 ref77d9c 128 128 ]]) 129 129 130 echo "FULL BUILD = ${promoteBuild2DoLang}" 131 echo "${promoteBuild2DoLang.getClass()}" 130 boolean doPromoteBuild2DoLang = promoteBuild2DoLang == 'true' 131 132 echo "FULL BUILD = ${doPromoteBuild2DoLang}" 132 133 133 134 //Compile using gcc-4.9 … … 143 144 cfa_build() 144 145 145 if( promoteBuild2DoLang == true) {146 if( doPromoteBuild2DoLang ) { 146 147 push_build() 147 148 } … … 165 166 finally { 166 167 //Send email with final results 167 notify_result( promoteBuild2DoLang == true, err != null, currentBuild.result, log_needed)168 notify_result(doPromoteBuild2DoLang, err != null, currentBuild.result, log_needed) 168 169 169 170 /* Must re-throw exception to propagate error */
Note: See TracChangeset
for help on using the changeset viewer.