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

Try a native aarch64 build #167

Merged
merged 5 commits into from
Nov 26, 2024
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
17 changes: 6 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

test:
needs: [core, sdist_verify, rust]
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main
uses: sunpy/github-actions-workflows/.github/workflows/tox.yml@main
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apparently GH wont let you run cross-organization reuseable workflows on self-hosted or paid-for runners.

with:
submodules: false
coverage: codecov
Expand All @@ -71,6 +71,8 @@ jobs:
- macos: py310
- linux: py312
- linux: py310-oldestdeps
- linux: py312
runs-on: arm
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Expand Down Expand Up @@ -118,7 +120,7 @@ jobs:
contains(github.event.pull_request.labels.*.name, 'Run publish')
)
needs: [test, docs]
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@main
uses: sunpy/github-actions-workflows/.github/workflows/publish.yml@main
with:
sdist: true
test_extras: 'tests'
Expand All @@ -130,15 +132,8 @@ jobs:
- cp3{10,11,12,13}-macosx_x86_64
- cp3{10,11,12,13}-macosx_arm64
- cp3{10,11,12,13}-win_amd64
# Build aarch64 one wheel per job as they be slow
- cp310-musllinux_aarch64
- cp311-musllinux_aarch64
- cp312-musllinux_aarch64
- cp313-musllinux_aarch64
- cp310-manylinux_aarch64
- cp311-manylinux_aarch64
- cp312-manylinux_aarch64
- cp313-manylinux_aarch64
- target: cp3{10,11,12,13}-manylinux_aarch64
runs-on: arm
secrets:
pypi_token: ${{ secrets.pypi_token }}

Expand Down
Loading