mirror of
https://github.com/pulseaudio/pulseaudio.git
synced 2024-11-27 03:43:52 +08:00
23 lines
521 B
YAML
23 lines
521 B
YAML
image: registry.freedesktop.org/pulseaudio/pulseaudio/ubuntu:18.04
|
|
|
|
build:
|
|
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
|
|
- cd ..
|
|
- meson . build-meson
|
|
- ninja -C build-meson
|
|
artifacts:
|
|
paths:
|
|
- build/
|
|
- build-meson/
|