DATAKV-264 - Only test main branch for upstream triggers.

This commit is contained in:
Greg Turnquist
2019-06-28 19:05:20 -05:00
parent 9c9f28d30c
commit c2125db76e

7
Jenkinsfile vendored
View File

@@ -12,6 +12,12 @@ pipeline {
stages {
stage("Test") {
when {
anyOf {
branch '1.2.x'
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 {