From 43b5cffc851048880d3cef8e32adb53e77530a70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 9 Mar 2023 17:10:37 +0200 Subject: [PATCH] ci: Update to gtk 4.10.0 Part-of: --- ci/install-gtk4.sh | 2 +- ci/windows-docker/install_gtk.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/install-gtk4.sh b/ci/install-gtk4.sh index 09508288b..409ed18b9 100644 --- a/ci/install-gtk4.sh +++ b/ci/install-gtk4.sh @@ -2,7 +2,7 @@ set -eux -BRANCH=4.8.3 +BRANCH=4.10.0 git clone https://gitlab.gnome.org/GNOME/gtk.git --branch $BRANCH --depth=1 cd gtk diff --git a/ci/windows-docker/install_gtk.ps1 b/ci/windows-docker/install_gtk.ps1 index 482d7e078..2e7b251ec 100644 --- a/ci/windows-docker/install_gtk.ps1 +++ b/ci/windows-docker/install_gtk.ps1 @@ -3,7 +3,7 @@ $env:MESON_ARGS = "--prefix=C:\gst-install\" # Download gtk and all its subprojects -git clone -b 4.8.3 --depth 1 https://gitlab.gnome.org/gnome/gtk.git C:\gtk +git clone -b 4.10.0 --depth 1 https://gitlab.gnome.org/gnome/gtk.git C:\gtk if (!$?) { Write-Host "Failed to clone gtk" Exit 1