horcrux/.gitlab-ci.yml

30 lines
462 B
YAML
Raw Normal View History

2020-12-13 17:01:36 +00:00
image: gcc:10
stages:
- build
- test
2020-12-13 17:11:09 +00:00
before_script:
2020-12-13 17:26:24 +00:00
- apt-get update && apt-get install -y cmake libboost-all-dev
2020-12-13 17:11:09 +00:00
2020-12-13 17:01:36 +00:00
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