diff options
-rw-r--r-- | Jenkinsfile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index ce6bb7f..a16496b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,5 +21,13 @@ pipeline { steps { sh 'bash .scripts.d/40-publish.sh' } } } - post { always { junit 'build/reports/*.xml' } } + post { + always { + junit 'build/reports/*.xml' + step([$class: 'Mailer', + notifyEveryUnstableBuild: true, + recipients: "christian+jenkins@segundo.io", + sendToIndividuals: true]) + } + } } |