horcrux/.gitlab-ci.yml
2020-12-13 18:49:14 +01:00

30 lines
484 B
YAML

image: gcc:10
stages:
- build
- test
build:
stage: build
before_script:
- apt-get update && apt-get install -y cmake libboost-dev
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:
- cd build
- ./test/horcrux_test