Skip to content

Commit de7ff2a

Browse files
mp911deodrotbohm
authored andcommitted
Remove outdated Docker image builds.
See #2068
1 parent c3167be commit de7ff2a

File tree

1 file changed

+1
-33
lines changed

1 file changed

+1
-33
lines changed

Jenkinsfile

+1-33
Original file line numberDiff line numberDiff line change
@@ -9,44 +9,12 @@ pipeline {
99
options {
1010
disableConcurrentBuilds()
1111
buildDiscarder(logRotator(numToKeepStr: '14'))
12-
quietPeriod(300)
12+
quietPeriod(10)
1313
}
1414

1515
stages {
1616
stage("Docker images") {
1717
parallel {
18-
stage('Publish JDK 17 + MongoDB 4.4') {
19-
when {
20-
changeset "ci/openjdk8-mongodb-4.4/**"
21-
}
22-
agent { label 'data' }
23-
options { timeout(time: 30, unit: 'MINUTES') }
24-
25-
steps {
26-
script {
27-
def image = docker.build("springci/spring-data-rest-openjdk8-with-mongodb-4.4", "ci/openjdk8-mongodb-4.4/")
28-
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {
29-
image.push()
30-
}
31-
}
32-
}
33-
}
34-
stage('Publish JDK 11 + MongoDB 4.4') {
35-
when {
36-
changeset "ci/openjdk11-mongodb-4.4/**"
37-
}
38-
agent { label 'data' }
39-
options { timeout(time: 30, unit: 'MINUTES') }
40-
41-
steps {
42-
script {
43-
def image = docker.build("springci/spring-data-rest-openjdk11-with-mongodb-4.4", "ci/openjdk8-mongodb-4.4/")
44-
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {
45-
image.push()
46-
}
47-
}
48-
}
49-
}
5018
stage('Publish JDK 17/ + MongoDB 4.4') {
5119
when {
5220
changeset "ci/openjdk17-mongodb-4.4/**"

0 commit comments

Comments
 (0)