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