From e521f375779bf61c11a767aff35df0abef849cf3 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Sat, 21 Feb 2026 16:56:28 -0500 Subject: [PATCH 1/2] ci: fix openssl build --- .github/workflows/python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 7aa5faa7..610cdf9a 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -33,7 +33,7 @@ jobs: platform: - runner: ubuntu-latest target: x86_64 - before-script: yum install clang llvm llvm-devel perl-IPC-Cmd -y && python3 -m ensurepip + before-script: export CC=gcc CXX=g++ && 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 From a69ac6a768fcb621df2182d40220af0a512e163c Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Sat, 21 Feb 2026 17:28:17 -0500 Subject: [PATCH 2/2] disable --- .github/workflows/python.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 610cdf9a..44d7de3d 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -33,10 +33,12 @@ jobs: platform: - runner: ubuntu-latest target: x86_64 - before-script: export CC=gcc CXX=g++ && yum install clang llvm llvm-devel perl-IPC-Cmd -y && python3 -m ensurepip + 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 @@ -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