Cleanup pipelines

This commit is contained in:
Erik C. Thauvin 2023-11-08 12:51:35 -08:00
parent c25646e265
commit b9d1de5f4c
2 changed files with 5 additions and 9 deletions

View file

@ -7,14 +7,9 @@ cache:
stages: stages:
- test - test
download:
stage: test
script: ./bld download
compile:
stage: test
script: ./bld compile
test: test:
stage: test stage: test
script: ./bld test script:
- ./bld download
- ./bld compile
- ./bld test

View file

@ -3,6 +3,7 @@ image: openjdk:17
pipelines: pipelines:
default: default:
- step: - step:
name: Test with bld
script: script:
- ./bld download - ./bld download
- ./bld compile - ./bld compile