Skip to content

Commit

Permalink
Merge pull request #16 from codecov/joseph/build-alpine
Browse files Browse the repository at this point in the history
build: add alpine job to build musllinux wheels
  • Loading branch information
joseph-sentry authored Apr 24, 2024
2 parents 4f5986d + d95eb37 commit de2d409
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,29 @@ jobs:
name: wheels
path: dist

alpine:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, x86, aarch64, armv7]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
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:
Expand Down

0 comments on commit de2d409

Please sign in to comment.