Skip to content

Commit

Permalink
Merge pull request #37 from esa/enable-aarch64-build-in-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
schuhmaj authored Apr 23, 2024
2 parents cb34bbd + 612360e commit e26945b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,17 @@ jobs:
############################# LINUX WHEELS #############################
# In case of Linux we need to install compiler and build tools before building the wheels
# We further only build the manylinux wheels, but not the musllinux wheels
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: all
if: matrix.os == 'ubuntu-latest'
- name: Build wheels (Linux)
uses: pypa/[email protected]
env:
CIBW_BEFORE_BUILD: yum makecache && yum install -y gcc-c++ cmake && pip install ninja
CIBW_BUILD: "*manylinux*"
CIBW_ARCHS_LINUX: "auto64"
CIBW_ARCHS_LINUX: "x86_64 aarch64"
CIBW_TEST_COMMAND: 'python -c "import polyhedral_gravity"'
with:
package-dir: .
Expand Down

0 comments on commit e26945b

Please sign in to comment.