1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-10-26 07:49:41 +03:00

fix(cd): use workaround for linux-arm64-glibc maturin builds

https://github.com/PyO3/maturin-action/issues/222
This commit is contained in:
Orhun Parmaksız 2024-02-18 16:52:27 +03:00
parent e24af123db
commit dc79ed5fe2
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90

View File

@ -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,
@ -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 &&