Changeset e57ebb5 for Jenkinsfile
- Timestamp:
- Aug 17, 2018, 3:28:16 PM (6 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, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- a336d46
- Parents:
- 2469a6e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r2469a6e re57ebb5 65 65 if( Settings && !Settings.Silent ) { 66 66 echo 'Notifying users of result' 67 email( currentBuild.result, log_needed, bIsSandbox)67 email(log_needed, Settings.IsSandbox) 68 68 } 69 69 … … 121 121 - Status -------------------------------------------------------------- 122 122 123 BUILD# ${env.BUILD_NUMBER} - ${ status}123 BUILD# ${env.BUILD_NUMBER} - ${currentBuild.result} 124 124 125 125 - Log ----------------------------------------------------------------- … … 231 231 232 232 //Standard build email notification 233 def email( String status,boolean log, boolean bIsSandbox) {233 def email(boolean log, boolean bIsSandbox) { 234 234 //Since tokenizer doesn't work, figure stuff out from the environnement variables and command line 235 235 //Configurations for email format … … 256 256 } 257 257 258 def email_subject = "[${project_name} git][BUILD# ${env.BUILD_NUMBER} - ${ status}] - branch ${env.BRANCH_NAME}"258 def email_subject = "[${project_name} git][BUILD# ${env.BUILD_NUMBER} - ${currentBuild.result}] - branch ${env.BRANCH_NAME}" 259 259 def email_body = """This is an automated email from the Jenkins build machine. It was 260 260 generated because of a git hooks/post-receive script following … … 269 269 - Status -------------------------------------------------------------- 270 270 271 BUILD# ${env.BUILD_NUMBER} - ${ status}271 BUILD# ${env.BUILD_NUMBER} - ${currentBuild.result} 272 272 273 273 - Log -----------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.