Skip to content

Commit cb34267

Browse files
committed
Migrate to 2.2.x branch.
1 parent 817ef74 commit cb34267

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 {
@@ -15,7 +15,7 @@ pipeline {
1515
stage("test: baseline (jdk8)") {
1616
when {
1717
anyOf {
18-
branch 'master'
18+
branch '2.2.x'
1919
not { triggeredBy 'UpstreamCause' }
2020
}
2121
}
@@ -44,7 +44,7 @@ pipeline {
4444
stage("Test other configurations") {
4545
when {
4646
allOf {
47-
branch 'master'
47+
branch '2.2.x'
4848
not { triggeredBy 'UpstreamCause' }
4949
}
5050
}
@@ -100,7 +100,7 @@ pipeline {
100100
stage('Release to artifactory') {
101101
when {
102102
anyOf {
103-
branch 'master'
103+
branch '2.2.x'
104104
not { triggeredBy 'UpstreamCause' }
105105
}
106106
}
@@ -133,7 +133,7 @@ pipeline {
133133

134134
stage('Publish documentation') {
135135
when {
136-
branch 'master'
136+
branch '2.2.x'
137137
}
138138
agent {
139139
label 'data'

0 commit comments

Comments
 (0)