Files
klang/.gitlab-ci.yml
2020-03-09 21:55:47 +01:00

30 lines
435 B
YAML

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