Files
SDB/.gitlab-ci.yml
2018-06-23 17:25:46 +01:00

25 lines
334 B
YAML

image: alpine:latest
before_script:
- apk -q update
- apk -q add build-base cmake check-dev git
- cmake .
stages:
- build
- test
job_build:
stage: build
script:
- make SDB
artifacts:
expire_in: 1 week
paths:
- src/SDB
job_test:
stage: test
script:
- make check_SDB
- ./tests/check_SDB