2021-08-31 15:04:52 +02:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('lint') {
|
|
|
|
steps {
|
|
|
|
sh 'ansible-lint dotfiles.yml'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-31 16:58:01 +02:00
|
|
|
post {
|
2021-08-31 17:03:36 +02:00
|
|
|
failure {
|
|
|
|
emailext body: 'Please check why $BUILD_TAG failed! See $BUILD_URL', subject: 'Build #$BUILD_NUMBER - $BUILD_STATUS', recipientProviders: [developers(), requestor()]
|
2021-08-31 16:58:01 +02:00
|
|
|
}
|
|
|
|
}
|
2021-08-31 15:04:52 +02:00
|
|
|
}
|