ci: Pass --skip-broken after install, not before

Apparently dnf was changed in Fedora Rawhide:
https://bugzilla.redhat.com/show_bug.cgi?id=2216055
This commit is contained in:
Richard Hansen 2024-07-13 04:42:06 -04:00
parent 8a65264841
commit 3ffcdf8317

View file

@ -80,10 +80,10 @@ jobs:
dnf --refresh install -y 'dnf-command(config-manager)' epel-release && dnf --refresh install -y 'dnf-command(config-manager)' epel-release &&
dnf config-manager --set-enabled crb dnf config-manager --set-enabled crb
- name: install dependencies - name: install dependencies
# The --skip-broken argument works around RedHat UBI's missing packages. # The --skip-broken argument works around missing packages. (They're
# (They're only used for testing, so it's OK to not install them.) # only used for testing, so it's OK to not install them.)
run: | run: |
dnf --refresh --skip-broken install -y \ dnf --refresh install --skip-broken -y \
automake \ automake \
findutils \ findutils \
iproute \ iproute \