File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -38,3 +38,7 @@ update-docker:
3838linux-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
You can’t perform that action at this time.
0 commit comments