From 7e124747b0d93fb9dbb4041ce79a2d468f081b1e Mon Sep 17 00:00:00 2001 From: Obique Date: Sat, 18 May 2019 11:53:34 -0500 Subject: [PATCH] Trying to optimize pipelines (try 1) --- bitbucket-pipelines.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index e5346c528..2d5283113 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -1,7 +1,9 @@ +image: openjdk:12 pipelines: default: - step: name: fetch code + image: alpine/git script: - git submodule update --init artifacts: @@ -9,7 +11,7 @@ pipelines: - client-holocore/** - step: name: test, build, and deploy - image: openjdk:12 + #image: openjdk:12 caches: - docker - gradle @@ -30,4 +32,3 @@ pipelines: definitions: caches: gradlewrapper: ~/.gradle/wrapper -