Reworkd Bitbucket pipeline

This commit is contained in:
Erik C. Thauvin 2023-11-08 13:13:41 -08:00
parent 5b0d56926d
commit 78bbe6592b

View file

@ -2,10 +2,18 @@ image: openjdk:17
pipelines: pipelines:
default: default:
- step: - stage:
name: Test with bld name: Download, compile and test
script: steps:
- ./bld download - step:
- ./bld compile name: Download
- ./bld test script:
- ./bld download
- step:
name: Compile
script:
- ./bld compile
- step:
name: Test
script:
- ./bld test