Created
December 3, 2020 20:23
-
-
Save TobiX/1677e9de3d524247e2a389a1deaa1bfd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def call(Map params = [:], Closure inner) { | |
catchError { | |
inner.call() | |
} | |
def notifyCulprits = params.getOrDefault('notifyCulprits', true) | |
def extraMails = params.getOrDefault('extraMails', []) | |
if (shouldSendMail(currentBuild)) { | |
def providers = [] | |
if (notifyCulprits) { | |
providers.add(culprits()) | |
} | |
emailext subject: 'Jenkins - $PROJECT_NAME - Build #$BUILD_NUMBER - $BUILD_STATUS', | |
body: '${SCRIPT, template="groovy-html.template"}', mimeType: 'text/html', | |
recipientProviders: providers, to: extraMails.join(',') | |
} | |
} | |
/** | |
* Send email when either the current build is failed or the previous build has failed (so we send the | |
* "the build is back to normal" mails) | |
* | |
* @param currentBuild The current build, as defined by the pipeline | |
* @return true if a mail should be send, false otherwise | |
*/ | |
@NonCPS | |
def shouldSendMail(currentBuild) { | |
def previousBuild = currentBuild.previousBuild | |
return currentBuild.resultIsWorseOrEqualTo("UNSTABLE") || | |
(previousBuild != null && previousBuild.resultIsWorseOrEqualTo("UNSTABLE")) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment