Johannes Rothe
e05ce6a5f9
Some checks failed
dotfiles/pipeline/head There was a failure building this commit
17 lines
399 B
Groovy
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']]
|
|
}
|
|
}
|
|
}
|