Projet

Général

Profil

0001-send-mail-before-publishing-results-24389.patch

Emmanuel Cazenave, 08 juin 2018 17:31

Télécharger (1,01 ko)

Voir les différences:

Subject: [PATCH] send mail before publishing results (#24389)

 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
Jenkinsfile
20 20
    }
21 21
    post {
22 22
        always {
23
            junit '*_results.xml'
24 23
            script {
25 24
                utils = new Utils()
25
                utils.mail_notify(currentBuild, env, 'admin+jenkins-combo@entrouvert.com')
26 26
                utils.publish_coverage('coverage.xml')
27 27
                utils.publish_coverage_native('index.html')
28 28
                utils.publish_pylint('pylint.out')
29
                utils.mail_notify(currentBuild, env, 'admin+jenkins-combo@entrouvert.com')
30 29
            }
30
            junit '*_results.xml'
31 31
        }
32 32
        success {
33 33
            cleanWs()
34
-