Skip to content

Commit 4e3507f

Browse files
committed
Update Jenkins job after branching.
See #1112
1 parent 0b4d05c commit 4e3507f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pipeline {
33

44
triggers {
55
pollSCM 'H/10 * * * *'
6-
upstream(upstreamProjects: "spring-data-commons/master", threshold: hudson.model.Result.SUCCESS)
6+
upstream(upstreamProjects: "spring-data-commons/2.5.x", threshold: hudson.model.Result.SUCCESS)
77
}
88

99
options {
@@ -68,7 +68,7 @@ pipeline {
6868
stage("test: baseline (jdk8)") {
6969
when {
7070
anyOf {
71-
branch 'master'
71+
branch '2.5.x'
7272
not { triggeredBy 'UpstreamCause' }
7373
}
7474
}
@@ -95,7 +95,7 @@ pipeline {
9595
stage("Test other configurations") {
9696
when {
9797
allOf {
98-
branch 'master'
98+
branch '2.5.x'
9999
not { triggeredBy 'UpstreamCause' }
100100
}
101101
}
@@ -145,7 +145,7 @@ pipeline {
145145
stage('Release to artifactory') {
146146
when {
147147
anyOf {
148-
branch 'master'
148+
branch '2.5.x'
149149
not { triggeredBy 'UpstreamCause' }
150150
}
151151
}
@@ -178,7 +178,7 @@ pipeline {
178178
}
179179
stage('Publish documentation') {
180180
when {
181-
branch 'master'
181+
branch '2.5.x'
182182
}
183183
agent {
184184
label 'data'

0 commit comments

Comments
 (0)