30 lines
558 B
Groovy
30 lines
558 B
Groovy
pipeline {
|
|
agent any
|
|
options {
|
|
timestamps()
|
|
ansiColor("xterm")
|
|
disableConcurrentBuilds()
|
|
}
|
|
|
|
stages {
|
|
stage('build') {
|
|
steps {
|
|
sh 'docker build -t infra:lint .'
|
|
}
|
|
}
|
|
|
|
stage('lint') {
|
|
steps {
|
|
sh 'docker run --rm infra:lint'
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
cleanup {
|
|
cleanWs(deleteDirs: true,
|
|
disableDeferredWipeout: true,
|
|
notFailBuild: true)
|
|
}
|
|
}
|
|
}
|