Files
klang/.gitlab-ci.yml

22 lines
299 B
YAML

build:
image: maven:latest
stage: build
tags:
- docker
artifacts:
paths:
- target/
script:
- mvn package
test:
image: ubuntu:latest
stage: test
tags:
- docker
before_script:
- apt update
- apt install -y build-essential
script:
- make runTest