Skip to content

Commit

Permalink
ci: fix dnf5 missing groupinstall
Browse files Browse the repository at this point in the history
  • Loading branch information
jamacku committed Aug 5, 2024
1 parent fa03db9 commit 05ba70e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ jobs:
# required to be able to build rust packages: Development Tools
# https://trendoceans.com/fix-linker-cc-not-found/
run: |
sudo dnf groupinstall -y "Development Tools"
sudo dnf groupinstall -y "Development Tools" || \
sudo dnf5 group install -y development-tools || \
sudo dnf5 group list
- name: Test
if: ${{ matrix.coverage != true }}
Expand Down

0 comments on commit 05ba70e

Please sign in to comment.