chore(ci): Build musl wheels

This commit is contained in:
Ed Page 2023-04-19 09:46:47 -05:00
parent 78058ce3e3
commit 54042f2124

View file

@ -36,6 +36,26 @@ jobs:
name: wheels
path: dist
musllinux:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, aarch64]
steps:
- uses: actions/checkout@v3
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --manifest-path crates/typos-cli/Cargo.toml --release --out dist
sccache: 'true'
manylinux: musllinux_1_2
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
windows:
runs-on: windows-latest
strategy: