Skip to content

Commit 2cc01da

Browse files
committed
#481 - Enable maintenance branch build.
1 parent 05b3424 commit 2cc01da

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.4.x,spring-data-jdbc/2.1.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 '1.2.x'
1919
not { triggeredBy 'UpstreamCause' }
2020
}
2121
}
@@ -38,7 +38,7 @@ pipeline {
3838
stage("Test other configurations") {
3939
when {
4040
allOf {
41-
branch 'master'
41+
branch '1.2.x'
4242
not { triggeredBy 'UpstreamCause' }
4343
}
4444
}
@@ -82,7 +82,7 @@ pipeline {
8282
stage('Release to artifactory') {
8383
when {
8484
anyOf {
85-
branch 'master'
85+
branch '1.2.x'
8686
not { triggeredBy 'UpstreamCause' }
8787
}
8888
}
@@ -114,7 +114,7 @@ pipeline {
114114

115115
stage('Publish documentation') {
116116
when {
117-
branch 'master'
117+
branch '1.2.x'
118118
}
119119
agent {
120120
docker {

0 commit comments

Comments
 (0)