dotfiles/Jenkinsfile
Johannes Rothe e05ce6a5f9
Some checks failed
dotfiles/pipeline/head There was a failure building this commit
Add Mail rule
2021-08-31 16:58:01 +02:00

17 lines
399 B
Groovy

pipeline {
agent any
stages {
stage('lint') {
steps {
sh 'ansible-lint dotfiles.yml'
}
}
}
post {
always {
emailext body: 'Please check why ${env.BUILD_TAG} failed! [${env.BUILD_URL}]', subject: 'Build FAILED! ${env.BUILD_TAG}', recipientProviders: [[$class: 'DevelopersRecipientProvider']]
}
}
}