Skip to content
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
4 changes: 3 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@ jobs:
platform:
- runner: ubuntu-latest
target: x86_64
sccache: "false"
before-script: yum install clang llvm llvm-devel perl-IPC-Cmd -y && python3 -m ensurepip
manylinux: manylinux_2_28
- runner: ubuntu-latest
target: aarch64-unknown-linux-gnu
sccache: "true"
maturin-options: --zig
# Use zig 0.11.0 because this version contains generic-glibc < 2.38
# after glibc >= 2.38 strchrnul available in glibc by default
Expand All @@ -53,7 +55,7 @@ jobs:
working-directory: crates/squawk
args: --release --out dist ${{ matrix.platform.maturin-options }}
manylinux: ${{ matrix.platform.manylinux }}
sccache: "true"
sccache: ${{ matrix.platform.sccache }}
before-script-linux: ${{ matrix.platform.before-script }}
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down
Loading