Test gitlab-ci

This commit is contained in:
Michele Rodolfi 2020-12-13 18:01:36 +01:00
parent 01ff00f3b7
commit 06f35597fc

26
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,26 @@
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