Changeset b94206b for Jenkinsfile
- Timestamp:
- Jul 12, 2016, 4:51:30 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, 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:
- e67f54c
- Parents:
- a3e1f8f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified Jenkinsfile ¶
ra3e1f8f rb94206b 204 204 205 205 finally { 206 echo 'Build Completed' 207 206 208 //Send email with final results if this is not a full build 207 209 if( !bIsFullBuild ) { 210 echo 'Notifying users of result' 208 211 email(currentBuild.result, log_needed) 209 212 } … … 219 222 //Routine responsible of sending the email notification once the build is completed 220 223 //=========================================================================================================== 221 def notify_result(boolean bIsFullBuild, Exception err, String status, boolean log) {222 echo 'Build completed, sending result notification'223 if(bIsFullBuild) {224 email(status, log)225 }226 }227 228 224 //Standard build email notification 229 225 def email(String status, boolean log) {
Note: See TracChangeset
for help on using the changeset viewer.