Johannes Rothe
f0ecb173ac
Some checks failed
dotfiles/pipeline/head There was a failure building this commit
17 lines
420 B
Groovy
17 lines
420 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('lint') {
|
|
steps {
|
|
sh 'ansible-lint dotfiles.yml'
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
failure {
|
|
emailext body: 'Please check #$BUILD_NUMBER $PROJECT_NAME - $BUILD_STATUS! See $BUILD_URL', subject: 'Build #$BUILD_NUMBER $PROJECT_NAME - $BUILD_STATUS!', recipientProviders: [developers(), requestor()]
|
|
}
|
|
}
|
|
}
|