From 9fe07f4b6b9f5e2a239d11314ef6d05fd67ab591 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Wed, 5 May 2021 09:38:12 +0200 Subject: [PATCH] Update CI configuration after branching. See #1416. --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cf89128e..e4587270 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } } }