14 lines
166 B
YAML
14 lines
166 B
YAML
image: openjdk:17
|
|
|
|
variables:
|
|
CI_NAME: "GitLab CI"
|
|
|
|
stages:
|
|
- test
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- ./bld download
|
|
- ./bld compile
|
|
- ./bld test
|