From 6ebf8de72299ff9692ee24e91f580a4fe0e2fd5b Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Mon, 29 Jul 2024 14:54:06 +0300 Subject: [PATCH] ci: Enable the debuginfo repos in the images Always enable the debuginfo repos, so the debug packages installed are automatically kept in sync when upgrading the system. Part-of: --- ci/docker/fedora/install-deps.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/docker/fedora/install-deps.sh b/ci/docker/fedora/install-deps.sh index 85b5d88e22..f91e46de27 100644 --- a/ci/docker/fedora/install-deps.sh +++ b/ci/docker/fedora/install-deps.sh @@ -12,6 +12,10 @@ dnf install -y \ "https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm" \ "https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm" +# Enable the debuginfo repos so -debug packages are kept in sync +dnf install -y dnf-plugins-core +dnf config-manager --set-enabled '*-debuginfo' + dnf upgrade -y && dnf distro-sync -y # Install the dependencies of gstreamer