From e5830c2ea9edd53c028e6e26d13d1eeaa890c9a7 Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Wed, 20 Mar 2024 15:33:27 +0000 Subject: [PATCH] ci: Update to dav1d >= 1.3.0 This is going to be needed for: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1507 Part-of: --- ci/images_template.yml | 2 +- ci/install-dav1d.sh | 2 +- ci/windows-docker/install_dav1d.ps1 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/images_template.yml b/ci/images_template.yml index e93d4c1a8..7f770f428 100644 --- a/ci/images_template.yml +++ b/ci/images_template.yml @@ -1,4 +1,4 @@ variables: - GST_RS_IMG_TAG: "2024-03-20.0" + GST_RS_IMG_TAG: "2024-03-20.1" GST_RS_STABLE: "1.76.0" GST_RS_MSRV: "1.70.0" diff --git a/ci/install-dav1d.sh b/ci/install-dav1d.sh index c14f154ea..32df26d4c 100644 --- a/ci/install-dav1d.sh +++ b/ci/install-dav1d.sh @@ -1,6 +1,6 @@ set -e -RELEASE=1.1.0 +RELEASE=1.4.1 git clone https://code.videolan.org/videolan/dav1d.git --branch $RELEASE cd dav1d diff --git a/ci/windows-docker/install_dav1d.ps1 b/ci/windows-docker/install_dav1d.ps1 index 89eac341b..d1110f6aa 100644 --- a/ci/windows-docker/install_dav1d.ps1 +++ b/ci/windows-docker/install_dav1d.ps1 @@ -1,7 +1,7 @@ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; # Download gstreamer and all its subprojects -git clone -b 1.1.0 --depth 1 https://code.videolan.org/videolan/dav1d.git C:\dav1d +git clone -b 1.4.1 --depth 1 https://code.videolan.org/videolan/dav1d.git C:\dav1d if (!$?) { Write-Host "Failed to clone dav1d" Exit 1