From bf1717a67b6f777c4793f24edcb3c03fb68c5ca5 Mon Sep 17 00:00:00 2001 From: "@brodycj - C. Jonathan Brody" Date: Wed, 1 Jan 2025 22:55:06 -0500 Subject: [PATCH] quick workaround for CI issue with libc & Rust 1.56 --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f9c8b3d2..1d4b9ca88 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,6 +109,9 @@ jobs: timeout-minutes: 60 steps: - uses: taiki-e/checkout-action@v1 + # QUICK WORKAROUND FOR CI ISSUE with libc & MSRV + - run: cargo add libc@=0.2.153 --no-default-features -p futures-executor + - run: git clean -dfX - name: Install Rust run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} - name: Install cargo-hack