Skip to content

Commit

Permalink
ci: pypi: try enabling aarch64 on an ARM runner (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
woodruffw authored Jan 17, 2025
1 parent 768f1b3 commit 8a746a3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
31 changes: 18 additions & 13 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,24 @@ jobs:
strategy:
matrix:
platform:
- runner: ubuntu-22.04
- runner: ubuntu-24.04
target: x86_64
- runner: ubuntu-22.04
manylinux: auto
- runner: ubuntu-24.04
target: x86
# FUBAR
# - runner: ubuntu-22.04
# target: aarch64
- runner: ubuntu-22.04
manylinux: auto
- runner: ubuntu-24.04-arm
target: aarch64
manylinux: "2_24"
- runner: ubuntu-24.04
target: armv7
- runner: ubuntu-22.04
manylinux: auto
- runner: ubuntu-24.04
target: s390x
- runner: ubuntu-22.04
manylinux: auto
- runner: ubuntu-24.04
target: ppc64le
manylinux: auto
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
Expand All @@ -40,7 +45,7 @@ jobs:
target: ${{ matrix.platform.target }}
args: --release --out dist
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} # zizmor: ignore[cache-poisoning]
manylinux: auto
manylinux: ${{ matrix.platform.manylinux }}
- name: Upload wheels
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
with:
Expand All @@ -52,13 +57,13 @@ jobs:
strategy:
matrix:
platform:
- runner: ubuntu-22.04
- runner: ubuntu-24.04
target: x86_64
- runner: ubuntu-22.04
- runner: ubuntu-24.04
target: x86
- runner: ubuntu-22.04
- runner: ubuntu-24.04
target: aarch64
- runner: ubuntu-22.04
- runner: ubuntu-24.04
target: armv7
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand Down
1 change: 1 addition & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ of `zizmor`.
* The SARIF output mode (`--format=sarif`) now always returns absolute paths
in its location information, rather than attempting to infer a (sometimes
incorrect) repository-relative path (#453)
* `zizmor` now provides `manylinux` wheel builds for `aarch64` (#457)

### Fixed

Expand Down

0 comments on commit 8a746a3

Please sign in to comment.