dotfiles/Jenkinsfile

17 lines
399 B
Plaintext
Raw Normal View History

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 {
always {
emailext body: 'Please check why ${env.BUILD_TAG} failed! [${env.BUILD_URL}]', subject: 'Build FAILED! ${env.BUILD_TAG}', recipientProviders: [[$class: 'DevelopersRecipientProvider']]
}
}
2021-08-31 15:04:52 +02:00
}