Skip to content

ci(linux): use GHA ARM runners to build ARM wheels #281

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

Merged
merged 1 commit into from
Jan 23, 2025
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
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -40,17 +40,17 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
- os: ubuntu-24.04
arch: "x86_64"
- os: ubuntu-22.04
- os: ubuntu-24.04
arch: "i686"
- os: ubuntu-22.04
- os: ubuntu-24.04-arm
arch: "aarch64"
- os: ubuntu-22.04
- os: ubuntu-24.04
arch: "ppc64le"
- os: ubuntu-22.04
- os: ubuntu-24.04
arch: "s390x"
- os: ubuntu-22.04
- os: ubuntu-24.04-arm
arch: "armv7l"
- os: windows-2019
arch: "AMD64"
Expand All @@ -68,7 +68,7 @@ jobs:

- name: Set up QEMU
uses: docker/[email protected]
if: runner.os == 'Linux'
if: runner.os == 'Linux' && runner.arch == 'X64'

- uses: yezz123/setup-uv@v4

Expand All @@ -93,7 +93,7 @@ jobs:
build_sdist:
name: Build source distribution
needs: [lint]
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
check_dist:
name: Check dist
needs: [build_wheels, build_sdist, test_sdist]
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
Expand Down
Loading