metrics-lib/.gitlab-ci.yml
Iain R. Learmonth 4d8a8ea711 Adds GitLab CI for tests and checks
Configuration is held in the .gitlab-ci.yml file.

Fixes: #31645
2019-09-05 13:03:55 +01:00

19 lines
286 B
YAML

variables:
GIT_STRATEGY: clone
stages:
- test
test:
stage: test
image: debian:buster
script:
- apt update
- apt -y install default-jdk ant ivy git
- git submodule init
- git submodule update
- mkdir lib
- ant -lib /usr/share/java resolve
- ant test
- ant checks