diff options
author | Tsahi Zidenberg <65945052+tsahee@users.noreply.github.com> | 2020-12-11 07:30:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-11 14:30:49 +0900 |
commit | 7d6b4dfb516451735150d3f796f0b35ed5f004a4 (patch) | |
tree | c967b7980ee8f2a06041343da89e8d4193adb94b | |
parent | 2df517999b012737b1cf36f12bac13541a8eb6e1 (diff) | |
download | msgpack-python-7d6b4dfb516451735150d3f796f0b35ed5f004a4.tar.gz |
Build arm64 wheels (#439)
-rw-r--r-- | .github/workflows/linux.yml | 10 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 89bdb4e..50a0abe 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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 @@ -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 |