Files
klang/.gitlab-ci.yml
2020-03-09 22:03:01 +01:00

33 lines
538 B
YAML

build:
image: maven:latest
stage: build
tags:
- docker
artifacts:
paths:
- target/
script:
- mvn package
test_parsing:
image: ubuntu:rolling
stage: test
tags:
- docker
before_script:
- apt update
- apt install -y build-essential openjdk-13-jre-headless maven
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