Switched GitLab and BitBucket pipelines to single stage

This commit is contained in:
Erik C. Thauvin 2023-11-08 12:42:26 -08:00
parent 3e834ae310
commit c25646e265
2 changed files with 5 additions and 13 deletions

View file

@ -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:

View file

@ -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