mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-02 07:25:58 +01:00
6ecb5dffc7
Alpine uses musl, which may behave differently than glibc. Add Alpine to the CI to make sure we don't rely on glibc-specific behaviour. References: https://github.com/emersion/xdg-desktop-portal-wlr/issues/28
21 lines
436 B
YAML
21 lines
436 B
YAML
image: archlinux
|
|
packages:
|
|
- gcc
|
|
- clang
|
|
- meson
|
|
- wayland
|
|
- wayland-protocols
|
|
- pipewire
|
|
sources:
|
|
- https://github.com/emersion/xdg-desktop-portal-wlr
|
|
tasks:
|
|
- setup: |
|
|
cd xdg-desktop-portal-wlr
|
|
CC=gcc meson build-gcc/
|
|
CC=clang meson build-clang/
|
|
- build-gcc: |
|
|
cd xdg-desktop-portal-wlr
|
|
ninja -C build-gcc/
|
|
- build-clang: |
|
|
cd xdg-desktop-portal-wlr
|
|
ninja -C build-clang/
|