Files
klang/.gitlab-ci.yml
2019-12-17 18:53:12 +01:00

22 lines
323 B
YAML

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