2018-06-30 14:33:30 +08:00
|
|
|
image: registry.freedesktop.org/pulseaudio/pulseaudio/ubuntu:18.04
|
|
|
|
|
2018-09-20 10:46:39 +08:00
|
|
|
build-autotools:
|
2018-06-30 14:33:30 +08:00
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- export MAKEFLAGS="-j$(nproc)"
|
|
|
|
- NOCONFIGURE=1 ./bootstrap.sh
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- ../configure --localstatedir=/var
|
|
|
|
- make
|
|
|
|
- make check
|
|
|
|
- make check-daemon
|
|
|
|
- ulimit -c 0 # don't dump core files on tests that are supposed to assert
|
|
|
|
- make distcheck
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- build/
|
2018-09-20 10:46:39 +08:00
|
|
|
|
|
|
|
build-meson:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- meson build
|
|
|
|
- cd build
|
|
|
|
- ninja
|
|
|
|
- ninja test
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- build/
|