15 lines
237 B
YAML
15 lines
237 B
YAML
stages:
|
|
- build
|
|
|
|
Build:
|
|
stage: build
|
|
image: $CI_REGISTRY/buildsystems/gcc7_x64
|
|
tags:
|
|
- ccache
|
|
|
|
script:
|
|
- mkdir build -p; cd build
|
|
- cmake -GNinja -DCMAKE_BUILD_TYPE=Release ../
|
|
- cmake --build .
|
|
- ccache -s
|