phundrakstl/.gitlab-ci.yml

11 lines
190 B
YAML

image: gcc:latest
stages:
- build
build:
stage: build
script:
- apt install -y cmake
- mkdir -p build bin debug && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make -j