Browse Source

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

pull/399/head
Greg Turnquist 7 years ago
parent
commit
bf1e00e93f
No known key found for this signature in database
GPG Key ID: CB2FA4D512B5C413
  1. 7
      Jenkinsfile

7
Jenkinsfile vendored

@ -12,6 +12,12 @@ pipeline { @@ -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 { @@ -31,6 +37,7 @@ pipeline {
stage('Release to artifactory') {
when {
branch 'issue/*'
not { triggeredBy 'UpstreamCause' }
}
agent {
docker {

Loading…
Cancel
Save