No longer deploys to dev on non-master branches.

This commit is contained in:
Chad Duffin 2017-09-27 12:45:27 -07:00
parent 7dbdaf2178
commit f3911a65ed

6
Jenkinsfile vendored
View file

@ -106,6 +106,9 @@ pipeline {
}
stage('Deploy to dev') {
when {
branch 'master'
}
agent any
steps {
script {
@ -115,6 +118,9 @@ pipeline {
}
stage('Smoke test dev') {
when {
branch 'master'
}
agent {
docker {
image 'maven:3.5.0'