phundrakstl/.gitlab-ci.yml

11 lines
204 B
YAML
Raw Normal View History

2018-11-02 12:59:59 +00:00
image: gcc:latest
stages:
- build
build:
stage: build
script:
2018-11-02 13:05:31 +00:00
- apt update && apt install -y cmake
2018-11-02 12:59:59 +00:00
- mkdir -p build bin debug && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make -j