send mail before publishing results (#24389)

This commit is contained in:
Emmanuel Cazenave 2018-06-08 17:19:52 +02:00
parent 644423da92
commit 0d174f53cd
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -20,14 +20,14 @@ pipeline {
}
post {
always {
junit '*_results.xml'
script {
utils = new Utils()
utils.mail_notify(currentBuild, env, 'admin+jenkins-combo@entrouvert.com')
utils.publish_coverage('coverage.xml')
utils.publish_coverage_native('index.html')
utils.publish_pylint('pylint.out')
utils.mail_notify(currentBuild, env, 'admin+jenkins-combo@entrouvert.com')
}
junit '*_results.xml'
}
success {
cleanWs()