-
-
Notifications
You must be signed in to change notification settings - Fork 35
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
Add wheel build for the aarch64 architecture in Github actions #272
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,9 @@ jobs: | |
build-linux-wheels: | ||
name: Build Linux Python Wheels (+PGO) | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
arch: [none, aarch64] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
|
@@ -56,6 +59,7 @@ jobs: | |
|
||
- uses: eiennohito/gha-manylinux-build@master | ||
with: | ||
arch: ${{ matrix.arch }} | ||
script: python/build-wheels-manylinux-pgo.sh | ||
|
||
- uses: actions/upload-artifact@v4 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Also, we merge contents of each artifacts with |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
eiennohito/gha-manylinux-build
does not havearch
input.I guess we need a different method to build aarch64 wheel.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can update the build definition if somebody makes a PR for it. Or you can clone the repo to your user and use the clone definiton.