From c555063f1ff49f7728c9d6bf84f4b3ba39412b33 Mon Sep 17 00:00:00 2001 From: ijl Date: Thu, 18 Jan 2024 16:24:30 +0000 Subject: [PATCH] Minimal musllinux_1_1 build due to sporadic CI failure musllinux_1_2 was added something like two years ago and should probably be used instead. --- .github/workflows/linux.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 817947f5..744bef39 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -140,14 +140,14 @@ jobs: CC: "gcc" CFLAGS: "-O2" LDFLAGS: "-O2 -flto -Wl,--as-needed" - RUSTFLAGS: "-C target-feature=-crt-static -Z mir-opt-level=4" + RUSTFLAGS: "-C target-feature=-crt-static" CARGO_UNSTABLE_SPARSE_REGISTRY: "true" with: rust-toolchain: nightly-2024-01-17 rustup-components: rust-src target: ${{ matrix.platform.target }} manylinux: musllinux_1_1 - args: --release --strip --out=dist --features=encoding_rs/simd-accel,no-panic,unstable-simd,yyjson -i python${{ matrix.python.version }} + args: --release --strip --out=dist --features=no-panic,yyjson -i python${{ matrix.python.version }} - name: Set up QEMU if: matrix.platform.arch != 'x86_64'