horcrux/.gitlab-ci.yml

30 lines
466 B
YAML

image: gcc:10
stages:
- build
- test
before_script:
- sudo apt-get update && apt-get install -y cmake make libssl-dev
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