From 78bbe6592b2b22c97590f03a22d8e3a21eafb5d1 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Wed, 8 Nov 2023 13:13:41 -0800 Subject: [PATCH 1/2] Reworkd Bitbucket pipeline --- bitbucket-pipelines.yml | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 3d0ff1f..76523af 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -2,10 +2,18 @@ image: openjdk:17 pipelines: default: - - step: - name: Test with bld - script: - - ./bld download - - ./bld compile - - ./bld test - + - stage: + name: Download, compile and test + steps: + - step: + name: Download + script: + - ./bld download + - step: + name: Compile + script: + - ./bld compile + - step: + name: Test + script: + - ./bld test From 66d30f1e31db7cc628ded3c0b19f4a934b03bd3e Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Wed, 8 Nov 2023 13:23:30 -0800 Subject: [PATCH 2/2] Added maven cache to Bitbucket pipeline --- bitbucket-pipelines.yml | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 76523af..77be950 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -2,18 +2,11 @@ image: openjdk:17 pipelines: default: - - stage: - name: Download, compile and test - steps: - - step: - name: Download - script: - - ./bld download - - step: - name: Compile - script: - - ./bld compile - - step: - name: Test - script: - - ./bld test + - step: + name: Test with bld + caches: + - maven + script: + - ./bld download + - ./bld compile + - ./bld test