From 8e6dbae402ab020f5506b548a0fd3dfa5d36dc9e Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 3 Sep 2019 16:10:42 -0700 Subject: [PATCH] Build CI images in parallel Closes gh-18115 --- ci/pipeline.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/ci/pipeline.yml b/ci/pipeline.yml index 20a470b6e5..2ca096d4f7 100644 --- a/ci/pipeline.yml +++ b/ci/pipeline.yml @@ -144,18 +144,19 @@ jobs: plan: - get: ci-images-git-repo trigger: true - - put: spring-boot-ci-image - params: - build: ci-images-git-repo/ci/images - dockerfile: ci-images-git-repo/ci/images/spring-boot-ci-image/Dockerfile - - put: spring-boot-jdk11-ci-image - params: - build: ci-images-git-repo/ci/images - dockerfile: ci-images-git-repo/ci/images/spring-boot-jdk11-ci-image/Dockerfile - - put: spring-boot-jdk12-ci-image - params: - build: ci-images-git-repo/ci/images - dockerfile: ci-images-git-repo/ci/images/spring-boot-jdk12-ci-image/Dockerfile + - in_parallel: + - put: spring-boot-ci-image + params: + build: ci-images-git-repo/ci/images + dockerfile: ci-images-git-repo/ci/images/spring-boot-ci-image/Dockerfile + - put: spring-boot-jdk11-ci-image + params: + build: ci-images-git-repo/ci/images + dockerfile: ci-images-git-repo/ci/images/spring-boot-jdk11-ci-image/Dockerfile + - put: spring-boot-jdk12-ci-image + params: + build: ci-images-git-repo/ci/images + dockerfile: ci-images-git-repo/ci/images/spring-boot-jdk12-ci-image/Dockerfile - name: detect-jdk-updates plan: - get: git-repo