From c25646e26569a9073a924ba9e7f0da345a69da49 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Wed, 8 Nov 2023 12:42:26 -0800 Subject: [PATCH] Switched GitLab and BitBucket pipelines to single stage --- .gitlab-ci.yml | 5 ++--- bitbucket-pipelines.yml | 13 +++---------- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b30fab7..b577ed5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,15 +5,14 @@ cache: - .m2/repository/ stages: - - build - test download: - stage: build + stage: test script: ./bld download compile: - stage: build + stage: test script: ./bld compile test: diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 830b8e2..4f5f860 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -3,15 +3,8 @@ image: openjdk:17 pipelines: default: - step: - name: "Download dependencies" script: - - bash ./bld download - - step: - name: "Compile project" - script: - - bash ./bld compile - - step: - name: "Run tests" - script: - - bash ./bld test + - ./bld download + - ./bld compile + - ./bld test