From f67d181c30ddf5e525b147551701e0d05095b7ce Mon Sep 17 00:00:00 2001 From: Michael Catanzaro Date: Tue, 21 Nov 2023 13:03:22 -0600 Subject: ci: install dependencies with dnf5 It seems that the current Fedora rawhide image comes with /usr/bin/dnf, but during the first system update dnf deletes itself and we're left with only dnf5. --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9be9c50..b538a94 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,8 +17,8 @@ variables: build:autotools: before_script: - - dnf update -y --nogpgcheck - - dnf install -y --nogpgcheck $DEPENDENCIES + - dnf5 update -y --nogpgcheck + - dnf5 install -y --nogpgcheck $DEPENDENCIES script: - make @@ -30,8 +30,8 @@ build:autotools: build:meson: before_script: - - dnf update -y --nogpgcheck - - dnf install -y --nogpgcheck $DEPENDENCIES + - dnf5 update -y --nogpgcheck + - dnf5 install -y --nogpgcheck $DEPENDENCIES script: - meson _build - ninja -C _build -- cgit v1.2.3