vn-autoconfig/Jenkinsfile

31 lines
563 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:27:53 +00:00
environment {
CREDENTIALS = credentials('docker-registry')
}
steps {
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
}
}
}