From 59564fc59917aaf6d0126e85fbca4207af69920f Mon Sep 17 00:00:00 2001 From: Jan Niehusmann Date: Thu, 23 Oct 2025 12:59:44 +0000 Subject: [PATCH] Work around CI failure with old rust version The libc crate broke compatibility with our MSRV without a semver version bump. Force using a sufficiently old libc version in our CI. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c8d446c4..bc67ba8b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,8 @@ jobs: toolchain: ${{ matrix.rust }} target: ${{ matrix.target }} + - if: ${{ matrix.rust=='1.56.1' }} + run: cargo update --precise 0.2.163 --package libc - run: cargo check --target=${{ matrix.TARGET }} - run: cargo build --target=${{ matrix.TARGET }} - run: cargo test --target=${{ matrix.TARGET }}