dotfiles/Jenkinsfile
Johannes Rothe c026f7ef38
Some checks failed
dotfiles/pipeline/head There was a failure building this commit
Jenkinsfile: add mail pipeline
2021-08-31 17:03:36 +02:00

17 lines
382 B
Groovy

pipeline {
agent any
stages {
stage('lint') {
steps {
sh 'ansible-lint dotfiles.yml'
}
}
}
post {
failure {
emailext body: 'Please check why $BUILD_TAG failed! See $BUILD_URL', subject: 'Build #$BUILD_NUMBER - $BUILD_STATUS', recipientProviders: [developers(), requestor()]
}
}
}