Skip to content

Commit 9784573

Browse files
committed
Polishing.
1 parent dbe32ac commit 9784573

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Jenkinsfile

+5-5
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 {
@@ -15,7 +15,7 @@ pipeline {
1515
stage("test: baseline (jdk8)") {
1616
when {
1717
anyOf {
18-
branch 'master'
18+
branch '2.5.x'
1919
not { triggeredBy 'UpstreamCause' }
2020
}
2121
}
@@ -46,7 +46,7 @@ pipeline {
4646
stage("Test other configurations") {
4747
when {
4848
allOf {
49-
branch 'master'
49+
branch '2.5.x'
5050
not { triggeredBy 'UpstreamCause' }
5151
}
5252
}
@@ -106,7 +106,7 @@ pipeline {
106106
stage('Release to artifactory') {
107107
when {
108108
anyOf {
109-
branch 'master'
109+
branch '2.5.x'
110110
not { triggeredBy 'UpstreamCause' }
111111
}
112112
}
@@ -144,7 +144,7 @@ pipeline {
144144
}
145145
stage('Publish documentation') {
146146
when {
147-
branch 'master'
147+
branch '2.5.x'
148148
}
149149
agent {
150150
label 'data'

0 commit comments

Comments
 (0)