mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-06-23 18:45:39 +02:00
15 lines
216 B
YAML
15 lines
216 B
YAML
stages:
|
|
- build
|
|
|
|
configure:
|
|
stage: build
|
|
script:
|
|
- mkdir -p bld/debug
|
|
- cd bld/debug
|
|
- cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug ../../
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- cd bld/debug
|
|
- ninja
|