Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7d6b4df

Browse filesBrowse files
authored
Build arm64 wheels (#439)
1 parent 2df5179 commit 7d6b4df
Copy full SHA for 7d6b4df

File tree

Expand file treeCollapse file tree

2 files changed

+14
-0
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+14
-0
lines changed

‎.github/workflows/linux.yml

Copy file name to clipboardExpand all lines: .github/workflows/linux.yml
+10Lines 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

Copy file name to clipboardExpand all lines: Makefile
+4Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.