From b4218de3adfe78bc6a630668d1c86dfcf0fa083c Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 8 Oct 2021 11:21:10 +0200 Subject: [PATCH] Remove outdated Docker image builds. See #2068 --- Jenkinsfile | 34 +--------------------------------- 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 97e84356e..998d55fad 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,44 +9,12 @@ pipeline { options { disableConcurrentBuilds() buildDiscarder(logRotator(numToKeepStr: '14')) - quietPeriod(300) + quietPeriod(10) } stages { stage("Docker images") { parallel { - stage('Publish JDK 17 + MongoDB 4.4') { - when { - changeset "ci/openjdk8-mongodb-4.4/**" - } - agent { label 'data' } - options { timeout(time: 30, unit: 'MINUTES') } - - steps { - script { - def image = docker.build("springci/spring-data-rest-openjdk8-with-mongodb-4.4", "ci/openjdk8-mongodb-4.4/") - docker.withRegistry('', 'hub.docker.com-springbuildmaster') { - image.push() - } - } - } - } - stage('Publish JDK 11 + MongoDB 4.4') { - when { - changeset "ci/openjdk11-mongodb-4.4/**" - } - agent { label 'data' } - options { timeout(time: 30, unit: 'MINUTES') } - - steps { - script { - def image = docker.build("springci/spring-data-rest-openjdk11-with-mongodb-4.4", "ci/openjdk8-mongodb-4.4/") - docker.withRegistry('', 'hub.docker.com-springbuildmaster') { - image.push() - } - } - } - } stage('Publish JDK 17/ + MongoDB 4.4') { when { changeset "ci/openjdk17-mongodb-4.4/**"