summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@redhat.com>2023-11-21 13:03:22 -0600
committerMichael Catanzaro <mcatanzaro@redhat.com>2023-11-21 13:05:47 -0600
commitf67d181c30ddf5e525b147551701e0d05095b7ce (patch)
tree22e11995b412147494e8f799c9f8a2ccff8481dd
parent786dc25662a2c6fe93c4ba7219d8b34c00829a50 (diff)
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.
-rw-r--r--.gitlab-ci.yml8
1 files 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