diff --git a/Jenkinsfile b/Jenkinsfile index 991ebdfff..4a184c401 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,18 +8,25 @@ pipeline { } stage('Test') { steps { - // + bat 'make check' } } stage('Package') { steps { - // + echo 'Testing' } } stage('Deploy') { steps { - // + echo 'Deploy' } } } } +post { + failure { + mail to: 'jessica.allaire.96@hotmail.com', + subject: "Failed Pipeline: ${currentBuild.fullDisplayName}", + body: "Something is wrong with ${env.BUILD_URL}" + } +}