Skip to content

Commit 8b890f7

Browse files
committed
DATACMNS-1810 - Enable maintenance branch build.
1 parent 90ff8b3 commit 8b890f7

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-build/master", threshold: hudson.model.Result.SUCCESS)
6+
upstream(upstreamProjects: "spring-data-build/2.4.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.4.x'
1919
not { triggeredBy 'UpstreamCause' }
2020
}
2121
}
@@ -36,7 +36,7 @@ pipeline {
3636
stage("Test other configurations") {
3737
when {
3838
allOf {
39-
branch 'master'
39+
branch '2.4.x'
4040
not { triggeredBy 'UpstreamCause' }
4141
}
4242
}
@@ -76,7 +76,7 @@ pipeline {
7676
stage('Release to artifactory') {
7777
when {
7878
anyOf {
79-
branch 'master'
79+
branch '2.4.x'
8080
not { triggeredBy 'UpstreamCause' }
8181
}
8282
}
@@ -107,7 +107,7 @@ pipeline {
107107
}
108108
stage('Publish documentation') {
109109
when {
110-
branch 'master'
110+
branch '2.4.x'
111111
}
112112
agent {
113113
docker {

0 commit comments

Comments
 (0)