mirror of
https://github.com/pulseaudio/pulseaudio.git
synced 2024-11-24 02:14:14 +08:00
d32e61993a
Signed-off-by: Arnaud Rebillout <arnaud.rebillout@collabora.com>
30 lines
585 B
YAML
30 lines
585 B
YAML
image: registry.freedesktop.org/pulseaudio/pulseaudio/ubuntu:18.04
|
|
|
|
build-autotools:
|
|
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/
|
|
|
|
build-meson:
|
|
stage: build
|
|
script:
|
|
- meson build
|
|
- cd build
|
|
- ninja
|
|
- ninja test
|
|
artifacts:
|
|
paths:
|
|
- build/
|