Update CI configuration after branching.

See #1416.
This commit is contained in:
Mark Paluch
2021-05-05 09:38:12 +02:00
parent d79035919d
commit 9fe07f4b6b

6
Jenkinsfile vendored
View File

@@ -15,7 +15,7 @@ pipeline {
stage("test: baseline (jdk8)") {
when {
anyOf {
branch 'master'
branch '2.5.x'
not { triggeredBy 'UpstreamCause' }
}
}
@@ -40,7 +40,7 @@ pipeline {
stage("Test other configurations") {
when {
allOf {
branch 'master'
branch '2.5.x'
not { triggeredBy 'UpstreamCause' }
}
}
@@ -88,7 +88,7 @@ pipeline {
stage('Build project and release to artifactory') {
when {
anyOf {
branch 'master'
branch '2.5.x'
not { triggeredBy 'UpstreamCause' }
}
}