Add musl tools to gha

This commit is contained in:
Félix Saparelli 2022-01-23 02:43:00 +13:00
parent f87db2d89f
commit 0b9310f242
2 changed files with 8 additions and 1 deletions

View File

@ -82,6 +82,9 @@ jobs:
toolchain: stable
target: ${{ matrix.target }}
override: true
- name: Add musl tools
run: sudo apt install -y musl-gcc
if: endsWith(matrix.target, '-musl')
- name: Check
uses: actions-rs/cargo@v1
with:
@ -96,7 +99,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.51.0
toolchain: 1.58.0
override: true
- name: Check
uses: actions-rs/cargo@v1

View File

@ -93,6 +93,10 @@ jobs:
profile: minimal
override: true
- name: Add musl tools
run: sudo apt install -y musl-gcc
if: endsWith(matrix.target, '-musl')
- uses: actions-rs/cargo@v1
name: Build
with: