Merge pull request #36 from liatrio/PET-no-dev-deploy

No longer deploys to dev on non-master branches.
This commit is contained in:
Chad Duffin 2017-09-27 13:43:51 -07:00 committed by GitHub
commit e7ae81d642

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'