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