From 52d88a1a399885d51222da77440563b7a485963c Mon Sep 17 00:00:00 2001 From: Joe Richey Date: Wed, 22 Feb 2023 12:52:29 -0800 Subject: [PATCH] ci: Don't use rust-cache for Cross Build/Link I think the caching isn't interacting well with the libc build script. Lets see if this fixes things. Signed-off-by: Joe Richey --- .github/workflows/tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 79ea6316..dd2b1281 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -146,7 +146,6 @@ jobs: URL=https://github.com/cross-rs/cross/releases/download/${VERSION}/cross-x86_64-unknown-linux-gnu.tar.gz wget -O - $URL | tar -xz -C ~/.cargo/bin cross --version - - uses: Swatinem/rust-cache@v2 - name: Test run: cross test --no-fail-fast --target=${{ matrix.target }} --features=std @@ -183,7 +182,6 @@ jobs: URL=https://github.com/cross-rs/cross/releases/download/${VERSION}/cross-x86_64-unknown-linux-gnu.tar.gz wget -O - $URL | tar -xz -C ~/.cargo/bin cross --version - - uses: Swatinem/rust-cache@v2 - name: Build Tests run: cross test --no-run --target=${{ matrix.target }} --features=std