yambar/.gitlab-ci.yml
2019-01-20 13:10:03 +01:00

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