Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI/CD: Build aarch64 wheels #573

Merged
merged 1 commit into from
Jun 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:

steps:
- uses: actions/checkout@v3.5.3
with:
fetch-depth: 0 # need for setuptools_scm
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.6.1
with:
Expand Down Expand Up @@ -47,6 +49,8 @@ jobs:

steps:
- uses: actions/checkout@v3.5.3
with:
fetch-depth: 0 # need for setuptools_scm

# Used to host cibuildwheel
- uses: actions/setup-python@v4.6.1
Expand All @@ -61,6 +65,10 @@ jobs:

- name: Build wheels
uses: pypa/cibuildwheel@v2.13.1
env:
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
CIBW_ARCHS_LINUX: auto aarch64

- uses: actions/upload-artifact@v3
with:
Expand All @@ -72,6 +80,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
with:
fetch-depth: 0 # need for setuptools_scm

- uses: actions/setup-python@v4.6.1
with:
Expand Down