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:
parent
8a65264841
commit
3ffcdf8317
1 changed files with 3 additions and 3 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -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 \
|
||||||
|
|
Loading…
Reference in a new issue