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 30
30
run : |
31
31
make linux-wheel
32
32
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
+
33
43
- name : Run test (3.8)
34
44
run : |
35
45
pip install pytest
Original file line number Diff line number Diff line change @@ -38,3 +38,7 @@ update-docker:
38
38
linux-wheel :
39
39
docker run --rm -v ` pwd` :/project -w /project quay.io/pypa/manylinux2010_i686 bash docker/buildwheel.sh
40
40
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