Skip to content

Commit

Permalink
try to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Dec 16, 2024
1 parent 03c0c56 commit 48c67ea
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: false

jobs:
linux:
Expand All @@ -28,7 +28,6 @@ jobs:
target: x86_64
- runner: ubuntu-latest
target: x86
# Need to fix ring compilation: https://github.com/briansmith/ring/issues/1414#issuecomment-1055177218
- runner: ubuntu-latest
target: aarch64
- runner: ubuntu-latest
Expand All @@ -53,6 +52,14 @@ jobs:
- name: Install Python versions
run: uv python install 3.9 3.10 3.11 3.12 3.13 pypy3.10

- name: Add aarch64
if: ${{ matrix.platform.target }} == "aarch64"
run: |
apt-get install musl-tools clang llvm -y
echo CC_aarch64_unknown_linux_musl=clang >> $GITHUB_ENV
echo AR_aarch64_unknown_linux_musl=llvm-ar >> $GITHUB_ENV
echo 'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_RUSTFLAGS="-Clink-self-contained=yes -Clinker=rust-lld"' >> $GITHUB_ENV
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit 48c67ea

Please sign in to comment.