From b9d1de5f4cb9211698619ea71ec375871ede9a52 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Wed, 8 Nov 2023 12:51:35 -0800 Subject: [PATCH] Cleanup pipelines --- .gitlab-ci.yml | 13 ++++--------- bitbucket-pipelines.yml | 1 + 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b577ed5..521d562 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,14 +7,9 @@ cache: stages: - test -download: - stage: test - script: ./bld download - -compile: - stage: test - script: ./bld compile - test: stage: test - script: ./bld test + script: + - ./bld download + - ./bld compile + - ./bld test diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 4f5f860..3d0ff1f 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -3,6 +3,7 @@ image: openjdk:17 pipelines: default: - step: + name: Test with bld script: - ./bld download - ./bld compile