From 080c837cd6f65a28fe85a9cf868284051387363d Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Thu, 28 Sep 2023 16:53:55 +0200 Subject: [PATCH] ci: fedora: Install a more recent wayland-protocols version Part-of: --- .gitlab-image-tags.yml | 2 +- ci/docker/fedora/prepare.sh | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitlab-image-tags.yml b/.gitlab-image-tags.yml index 8fd7242260..23363c867e 100644 --- a/.gitlab-image-tags.yml +++ b/.gitlab-image-tags.yml @@ -5,7 +5,7 @@ variables: # If you are hacking on them or need a them to rebuild, its enough # to change any part of the string of the image you want. ### - FEDORA_TAG: '2023-09-28.0-f34tlbx' + FEDORA_TAG: '2023-10-22.1' INDENT_TAG: '2023-08-24.3' diff --git a/ci/docker/fedora/prepare.sh b/ci/docker/fedora/prepare.sh index e7e321164d..038dfc924b 100644 --- a/ci/docker/fedora/prepare.sh +++ b/ci/docker/fedora/prepare.sh @@ -251,6 +251,14 @@ meson install -C _build cd .. rm -rf gdk-pixbuf +# Install a more up to date wayland-protocols +git clone --branch 1.32 https://gitlab.freedesktop.org/wayland/wayland-protocols.git +cd wayland-protocols +meson setup _build --prefix=/usr -Dtests=false +meson install -C _build +cd .. +rm -rf wayland-protocols + # Install Rust RUSTUP_VERSION=1.26.0 RUST_VERSION=1.73.0