surfaces-unies/.gitlab-ci.yml
2018-11-11 18:34:52 +01:00

16 lines
308 B
YAML

image: nvidia/opengl:devel
stages:
- build
cache:
path:
- apt-cache/
build:
stage: build
script:
- apt update && apt -o dir::cache::archives="apt-cache" install -y build-essential cmake
- gcc --version
- mkdir -p build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make -j