You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sedona.apache.org by ji...@apache.org on 2023/03/24 05:17:01 UTC

[sedona] branch master updated: [SEDONA-227] Enable building python wheels for ARM64 (#808)

This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new 12cabb7d [SEDONA-227] Enable building python wheels for ARM64 (#808)
12cabb7d is described below

commit 12cabb7d6ad8bb01b4f2eb6e1c13733bb6148ed4
Author: Kristin Cowalcijk <bo...@wherobots.com>
AuthorDate: Fri Mar 24 13:16:54 2023 +0800

    [SEDONA-227] Enable building python wheels for ARM64 (#808)
---
 .github/workflows/python-wheel.yml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/python-wheel.yml b/.github/workflows/python-wheel.yml
index 0d5b229c..ebda9fb6 100644
--- a/.github/workflows/python-wheel.yml
+++ b/.github/workflows/python-wheel.yml
@@ -21,11 +21,18 @@ jobs:
 
     steps:
     - uses: actions/checkout@v2
+    - name: Set up QEMU
+      if: runner.os == 'Linux'
+      uses: docker/setup-qemu-action@v2
+      with:
+        platforms: all
     - name: Build wheels
       uses: pypa/cibuildwheel@v2.12.0
       env:
         CIBW_SKIP: 'pp* *musl*'
-        CIBW_ARCHS: 'auto64'
+        CIBW_ARCHS_LINUX: 'x86_64 aarch64'
+        CIBW_ARCHS_WINDOWS: 'AMD64 ARM64'
+        CIBW_ARCHS_MACOS: 'x86_64 arm64'
       with:
         package-dir: python
     - uses: actions/upload-artifact@v3