gitlab-ci: initial commit

This commit is contained in:
Daniel Eklöf 2019-01-20 12:52:15 +01:00
parent 4f5e22e231
commit b173f36e7e

15
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,15 @@
stages:
- build
configure:
stage: build
script:
- mkdir -p bld/debug
- cd bld/debug
- cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug ../../
build:
stage: build
script:
- cd bld/debug
- ninja