add simple gitlab-ci

This commit is contained in:
Bartosz Wieczorek 2018-06-11 10:14:36 +02:00
parent bc05f176c5
commit f5ac80ee5e

13
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,13 @@
stages:
- build
Build:
stage: build
image: rikorose/gcc-cmake
tags:
- c++
script:
- mkdir build -p; cd build
- cmake ../
- cmake --build .