DATACMNS-1536 - Don't always build based on an upstream cause.

This commit is contained in:
Greg Turnquist
2019-06-28 14:40:10 -05:00
parent 7186e98fa5
commit bf1e00e93f

7
Jenkinsfile vendored
View File

@@ -12,6 +12,12 @@ pipeline {
stages {
stage("Test") {
when {
anyOf {
branch 'master'
not { triggeredBy 'UpstreamCause' }
}
}
parallel {
stage("test: baseline") {
agent {
@@ -31,6 +37,7 @@ pipeline {
stage('Release to artifactory') {
when {
branch 'issue/*'
not { triggeredBy 'UpstreamCause' }
}
agent {
docker {