Skip to content

Commit

Permalink
fix(cd): use workaround for linux-arm64-glibc maturin builds
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Feb 18, 2024
1 parent e24af12 commit dc79ed5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ jobs:
TOOLCHAIN: stable,
TARGET: aarch64-unknown-linux-gnu,
NPM_PUBLISH: true,
# https://github.com/PyO3/maturin-action/issues/245
PYPI_PUBLISH: false,
PYPI_PUBLISH: true,
}
- {
NAME: linux-arm64-musl,
Expand Down Expand Up @@ -263,7 +262,8 @@ jobs:
target: ${{ matrix.build.TARGET }}
args: --release --sdist --out wheels
sccache: "true"
manylinux: auto
# https://github.com/PyO3/maturin-action/issues/245
manylinux: ${{ matrix.build.TARGET == 'aarch64-unknown-linux-gnu' && '2_28' || 'auto' }}
- name: Build Python wheels (macos & windows)
if: |
matrix.build.PYPI_PUBLISH == true &&
Expand Down

0 comments on commit dc79ed5

Please sign in to comment.