mirror of
https://github.com/torproject/metrics-lib.git
synced 2024-11-23 09:19:48 +00:00
4d8a8ea711
Configuration is held in the .gitlab-ci.yml file. Fixes: #31645
19 lines
286 B
YAML
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
|