mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 09:50:01 +00:00
Build arm64 wheels (#439)
This commit is contained in:
parent
2df517999b
commit
7d6b4dfb51
2 changed files with 14 additions and 0 deletions
10
.github/workflows/linux.yml
vendored
10
.github/workflows/linux.yml
vendored
|
|
@ -30,6 +30,16 @@ jobs:
|
|||
run: |
|
||||
make linux-wheel
|
||||
|
||||
- name: Install qemu-user-static for docker
|
||||
shell: bash
|
||||
run: |
|
||||
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
||||
|
||||
- name: Build arm64 wheels
|
||||
shell: bash
|
||||
run: |
|
||||
make linux-arm64-wheel
|
||||
|
||||
- name: Run test (3.8)
|
||||
run: |
|
||||
pip install pytest
|
||||
|
|
|
|||
4
Makefile
4
Makefile
|
|
@ -38,3 +38,7 @@ update-docker:
|
|||
linux-wheel:
|
||||
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2010_i686 bash docker/buildwheel.sh
|
||||
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2010_x86_64 bash docker/buildwheel.sh
|
||||
|
||||
.PHONY: linux-arm64-wheel
|
||||
linux-arm64-wheel:
|
||||
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2014_aarch64 bash docker/buildwheel.sh
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue