Browse Source

DATAMONGO-2280 - Only test main branch for upstream triggers.

1.10.x
Greg Turnquist 7 years ago
parent
commit
27dc8bcade
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 '1.10.x'
not { triggeredBy 'UpstreamCause' }
}
}
parallel {
stage("test: baseline") {
agent {
@ -38,6 +44,7 @@ pipeline { @@ -38,6 +44,7 @@ pipeline {
stage('Release to artifactory') {
when {
branch 'issue/*'
not { triggeredBy 'UpstreamCause' }
}
agent {
docker {

Loading…
Cancel
Save