mirror of
https://gitlab.gnome.org/GNOME/libgnome-volume-control.git
synced 2024-11-24 01:40:41 -05:00
78d3f49f79
All consumers of the submodule switched to meson, except the CI build. It neither seems useful to maintain a second build system just for that purpose, nor to test a configuation that isn't used by anybody. So set up a small fake project that includes gvc as a subproject, and build that during CI. https://gitlab.gnome.org/GNOME/libgnome-volume-control/merge_requests/9
14 lines
253 B
YAML
14 lines
253 B
YAML
stages:
|
|
- test
|
|
|
|
build-fedora:
|
|
image: fedora:latest
|
|
stage: test
|
|
before_script:
|
|
- dnf install -y redhat-rpm-config gcc meson pulseaudio-libs-devel alsa-lib-devel gtk3-devel
|
|
script:
|
|
- cd .gitlab-ci
|
|
- meson _build
|
|
- ninja -C _build
|
|
|