summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@gnome.org>2023-12-04 17:41:04 +0000
committerPhilip Withnall <pwithnall@gnome.org>2023-12-04 17:41:04 +0000
commit0b305dc9286c77229d697181a646dc432c4aea68 (patch)
tree298af3a6c271e4c91da717dc16c2d5a0f2b4bd74
parent00077eb7e35e292f56b5ead35327379424dfd311 (diff)
Revert "ci: install dependencies with dnf5"
This reverts commit f67d181c30ddf5e525b147551701e0d05095b7ce. It appears that the Rawhide change which deleted dnf5 on first install has been reverted, and now `dnf5` isn’t available, but `dnf` is. So go back to using that.
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6673605..a8c45b9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,8 +17,8 @@ variables:
build:autotools:
before_script:
- - dnf5 update -y --nogpgcheck
- - dnf5 install -y --nogpgcheck $DEPENDENCIES
+ - dnf update -y --nogpgcheck
+ - dnf install -y --nogpgcheck $DEPENDENCIES
script:
- make
@@ -31,8 +31,8 @@ build:autotools:
build:meson:
before_script:
- - dnf5 update -y --nogpgcheck
- - dnf5 install -y --nogpgcheck $DEPENDENCIES
+ - dnf update -y --nogpgcheck
+ - dnf install -y --nogpgcheck $DEPENDENCIES
script:
- meson setup --werror _build
- meson compile -C _build