Files
klang/.gitlab-ci.yml

18 lines
239 B
YAML

build:
image: maven:latest
stage: build
tags:
- docker
script:
- mvn package
test:
image: ubuntu:latest
stage: test
tags:
- docker
before_script:
- apt install build-essential
script:
- make runTest