mirror of
https://github.com/torproject/metrics-web.git
synced 2024-11-23 09:39:47 +00:00
c30b25acbd
Implements part of #31649.
22 lines
387 B
YAML
22 lines
387 B
YAML
variables:
|
|
GIT_STRATEGY: clone
|
|
JAVA_TOOL_OPTIONS: "-Dfile.encoding=UTF-8"
|
|
|
|
stages:
|
|
- test
|
|
|
|
test:
|
|
stage: test
|
|
image: debian:buster
|
|
script:
|
|
- apt update
|
|
- apt -y install default-jdk ant ivy git curl
|
|
- git submodule init
|
|
- git submodule update
|
|
- mkdir lib
|
|
- ant fetch-metrics-lib
|
|
- ant fetch-exonerator
|
|
- ant -lib /usr/share/java resolve
|
|
- ant test
|
|
- ant checks
|