vn-autoconfig/Jenkinsfile

26 lines
424 B
Plaintext
Raw Normal View History

2020-01-15 10:25:33 +00:00
#!/usr/bin/env groovy
pipeline {
agent any
environment {
PROJECT_NAME = 'vn-autoconfig'
}
stages {
2020-01-30 15:20:40 +00:00
stage('Checkout') {
steps {
2020-01-31 12:33:02 +00:00
setEnv()
2020-01-30 15:20:40 +00:00
}
}
2020-01-15 10:25:33 +00:00
stage('Deploy') {
when {
branch 'master'
}
2020-01-31 20:21:22 +00:00
dockerDeploy()
2020-01-15 10:25:33 +00:00
}
}
post {
always {
2020-01-31 12:33:02 +00:00
sendEmail()
2020-01-15 10:25:33 +00:00
}
}
}