horcrux/.gitlab-ci.yml

27 lines
380 B
YAML
Raw Normal View History

2020-12-13 17:01:36 +00:00
image: gcc:10
stages:
- build
- test
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