Skip to content

Commit

Permalink
Merge pull request #486 from evetion/musl-ci-tests
Browse files Browse the repository at this point in the history
Fix musl build can't find gcc-musl
  • Loading branch information
davidanthoff authored Nov 26, 2022
2 parents 49978c0 + 0ff3c3a commit c587ce4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ jobs:
rustflags:
steps:
- uses: actions/checkout@v3
- if: ${{ contains(matrix.target, '-musl') }}
run: sudo apt-get install musl-tools
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down Expand Up @@ -151,6 +153,8 @@ jobs:
rustflags:
steps:
- uses: actions/checkout@v3
- if: ${{ contains(matrix.target, '-musl') }}
run: sudo apt-get install musl-tools
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
rustflags:
steps:
- uses: actions/checkout@v3
- if: ${{ contains(matrix.target, '-musl') }}
run: sudo apt-get install musl-tools
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down

0 comments on commit c587ce4

Please sign in to comment.