eedb/.gitlab-ci.yml
2019-01-04 15:12:02 +01:00

15 lines
237 B
YAML

stages:
- build
Build:
stage: build
image: $CI_REGISTRY/buildsystems/gcc7_x64
tags:
- ccache
script:
- mkdir build -p; cd build
- cmake -GNinja -DCMAKE_BUILD_TYPE=Release ../
- cmake --build .
- ccache -s