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

22 lines
347 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 openjdk-13-jdk-headless
script:
- make runTest