horcrux/.gitlab-ci.yml
2020-12-13 18:17:48 +01:00

30 lines
445 B
YAML

image: gcc:10
stages:
- build
- test
before_script:
- apt-get update && apt-get install -y cmake
build:
stage: build
script:
- mkdir build
- cd build
- cmake ..
- make
artifacts:
name: test
paths:
- build/src
- build/lib
- build/test
- build/test_work_dir
test:
stage: test
script:
- ./test/horcrux_test