Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use dnf group install instead of dnf groupinstall & fix CI failures #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
fail-fast: false
matrix:
rust: [ stable, nightly ]
fedora: [ 37, 38, rawhide ]
fedora: [ 38, 39, rawhide ]
include:
- rust: nightly
fedora: 38
Expand All @@ -53,7 +53,7 @@ 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 group install -y --skip-broken "Development Tools"

- name: Test
if: ${{ matrix.coverage != true }}
Expand Down Expand Up @@ -149,5 +149,3 @@ jobs:
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: rust-clippy-results.sarif

...
Loading