eedb/.gitlab-ci.yml
Bartosz Wieczorek 2fc54c1929 add build type
2018-06-12 07:29:51 +02:00

14 lines
194 B
YAML

stages:
- build
Build:
stage: build
image: rikorose/gcc-cmake
tags:
- c++
script:
- mkdir build -p; cd build
- cmake -DCMAKE_BUILD_TYPE=Release ../
- cmake --build .