Skip to content

Commit 46137b7

Browse files
authored
Add musl aarch64 binaries (#295)
Or at least attempt to, let's see what PyPI says...
1 parent 170aca9 commit 46137b7

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ jobs:
7575
- run: |
7676
git clean -fdx wasmtime build
7777
python -m build --wheel -C=--build-option=--plat-name -C=--build-option=musllinux_1_2_x86_64
78+
- run: |
79+
git clean -fdx wasmtime build
80+
python -m build --wheel -C=--build-option=--plat-name -C=--build-option=musllinux_1_2_aarch64
7881
- run: |
7982
git clean -fdx wasmtime build
8083
python -m build --wheel -C=--build-option=--plat-name -C=--build-option=android_26_x86_64

ci/_custom_build/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def plat_name_to_download_args(plat_name:str) -> list[str]:
5959
'manylinux1-x86_64': ['linux', 'x86_64'],
6060
'manylinux2014_aarch64': ['linux', 'aarch64'],
6161
'musllinux_1_2_x86_64': ['musl', 'x86_64'],
62+
'musllinux_1_2_aarch64': ['musl', 'aarch64'],
6263
'win-amd64': ['win32', 'x86_64'],
6364
'win-arm64': ['win32', 'arm64'],
6465
}

0 commit comments

Comments
 (0)