15 lines
221 B
YAML
15 lines
221 B
YAML
stages:
|
|
- build
|
|
|
|
Build:
|
|
stage: build
|
|
image: eedb.pl:5001/eedb_buildsystem
|
|
tags:
|
|
- c++
|
|
|
|
script:
|
|
- mkdir build -p; cd build
|
|
- cmake -DCMAKE_BUILD_TYPE=Release ../
|
|
- cmake --build .
|
|
- ccache -s
|