eedb/.gitlab-ci.yml
2018-06-12 11:45:22 +02:00

15 lines
229 B
YAML

stages:
- build
Build:
stage: build
image: eedb.pl:5001/eedb_buildsystem
tags:
- c++
script:
- mkdir build -p; cd build
- cmake -GNinja -DCMAKE_BUILD_TYPE=Release ../
- cmake --build .
- ccache -s