wayland-protocols/.gitlab-ci/debian-install.sh
Simon Ser 98d8bb6716 ci: upgrade wayland to v1.23.1
Signed-off-by: Simon Ser <contact@emersion.fr>
2024-10-05 14:35:30 +00:00

14 lines
386 B
Bash
Executable file

#!/bin/sh -eux
# Note: don't forget to bump FDO_DISTRIBUTION_TAG when editing this file!
git clone --branch 1.23.1 --depth=1 https://gitlab.freedesktop.org/wayland/wayland
cd wayland/
git show -s HEAD
meson build/ -Dtests=false -Ddocumentation=false
ninja -j${FDO_CI_CONCURRENT:-4} -C build/ install
cd ..
rm -rf wayland/
echo "/usr/local/lib" >/etc/ld.so.conf.d/local.conf
ldconfig