Polishing.

This commit is contained in:
Greg L. Turnquist 2021-04-20 11:00:33 -05:00
parent 8cfe165754
commit 9c900eca21
No known key found for this signature in database
GPG Key ID: CB2FA4D512B5C413

8
Jenkinsfile vendored
View File

@ -15,7 +15,7 @@ pipeline {
stage("test: baseline (jdk8)") { stage("test: baseline (jdk8)") {
when { when {
anyOf { anyOf {
branch 'master' branch '4.2.x'
not { triggeredBy 'UpstreamCause' } not { triggeredBy 'UpstreamCause' }
} }
} }
@ -45,7 +45,7 @@ pipeline {
stage("Test other configurations") { stage("Test other configurations") {
when { when {
allOf { allOf {
branch 'master' branch '4.2.x'
not { triggeredBy 'UpstreamCause' } not { triggeredBy 'UpstreamCause' }
} }
} }
@ -103,7 +103,7 @@ pipeline {
stage('Release to artifactory') { stage('Release to artifactory') {
when { when {
anyOf { anyOf {
branch 'master' branch '4.2.x'
not { triggeredBy 'UpstreamCause' } not { triggeredBy 'UpstreamCause' }
} }
} }
@ -135,7 +135,7 @@ pipeline {
} }
stage('Publish documentation') { stage('Publish documentation') {
when { when {
branch 'master' branch '4.2.x'
} }
agent { agent {
label 'data' label 'data'