3aba3abbcd
There are enough bugs fixed in 0.17.1 which are relevant to river that I think it's worthwhile to refuse to compile against 0.17.1.
60 lines
1.5 KiB
YAML
60 lines
1.5 KiB
YAML
image: alpine/edge
|
|
packages:
|
|
- eudev-dev
|
|
- libinput-dev
|
|
- libseat-dev
|
|
- mesa-dev
|
|
- libffi-dev
|
|
- expat-dev
|
|
- hwdata-dev
|
|
- libdisplay-info-dev
|
|
- libxkbcommon-dev
|
|
- xcb-util-image-dev
|
|
- xcb-util-renderutil-dev
|
|
- xcb-util-wm-dev
|
|
- pixman-dev
|
|
- libevdev-dev
|
|
- wayland-protocols
|
|
- xwayland-dev
|
|
- meson
|
|
- scdoc
|
|
- tar
|
|
- wget
|
|
- xz
|
|
sources:
|
|
- https://github.com/riverwm/river
|
|
- https://gitlab.freedesktop.org/wayland/wayland.git
|
|
- https://gitlab.freedesktop.org/wlroots/wlroots.git
|
|
tasks:
|
|
- install_deps: |
|
|
cd wayland
|
|
git checkout 1.22.0
|
|
meson setup build -Ddocumentation=false -Dtests=false --prefix /usr
|
|
sudo ninja -C build install
|
|
cd ..
|
|
|
|
cd wlroots
|
|
git checkout 0.17.1
|
|
meson setup build --auto-features=enabled -Drenderers=gles2 -Dexamples=false \
|
|
-Dwerror=false -Db_ndebug=false -Dxcb-errors=disabled --prefix /usr
|
|
sudo ninja -C build/ install
|
|
cd ..
|
|
|
|
wget -nv https://ziglang.org/download/0.11.0/zig-linux-x86_64-0.11.0.tar.xz
|
|
# Remove a lot of useless lines from tar output.
|
|
tar -xvf zig-linux-x86_64-0.11.0.tar.xz 1>/dev/null
|
|
sudo mv zig-linux-x86_64-0.11.0/zig /usr/bin/
|
|
sudo mv zig-linux-x86_64-0.11.0/lib /usr/lib/zig
|
|
- build: |
|
|
cd river
|
|
zig build
|
|
- build_xwayland: |
|
|
cd river
|
|
zig build -Dxwayland
|
|
- fmt: |
|
|
cd river
|
|
zig fmt --check river/
|
|
zig fmt --check riverctl/
|
|
zig fmt --check rivertile/
|
|
zig fmt --check build.zig
|