mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-27 04:15:40 +02:00
21 lines
319 B
YAML
21 lines
319 B
YAML
image: gcc
|
|
|
|
stages:
|
|
- build
|
|
|
|
before_script:
|
|
- apt-get update
|
|
- apt-get -y install cmake xcb alsa-lib json-c libmpdclient
|
|
|
|
configure:
|
|
stage: build
|
|
script:
|
|
- mkdir -p bld/debug
|
|
- cd bld/debug
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug ../../
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- cd bld/debug
|
|
- make
|