8000 Build arm64 wheels (#439) · laike9m/msgpack-python@7d6b4df · GitHub
[go: up one dir, main page]

Skip to content

Commit 7d6b4df

Browse files
authored
Build arm64 wheels (msgpack#439)
1 parent 2df5179 commit 7d6b4df

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/linux.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,16 @@ jobs:
3030
run: |
3131
make linux-wheel
3232
33+
- name: Install qemu-user-static for docker
34+
shell: bash
35+
run: |
36+
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
37+
38+
- name: Build arm64 wheels
39+
shell: bash
40+
run: |
41+
make linux-arm64-wheel
42+
3343
- name: Run test (3.8)
3444
run: |
3545
pip install pytest

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,7 @@ update-docker:
3838
linux-wheel:
3939
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2010_i686 bash docker/buildwheel.sh
4040
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2010_x86_64 bash docker/buildwheel.sh
41+
42+
.PHONY: linux-arm64-wheel
43+
linux-arm64-wheel:
44+
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2014_aarch64 bash docker/buildwheel.sh

0 commit comments

Comments
 (0)
0