From 139548ffc7b239542c4960f3e9e07e2f9c491e07 Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Fri, 11 Oct 2024 13:27:55 -0400 Subject: [PATCH] ci(check-and-build-and-test): in the `msrv` job, try making deleting the existing Rust stuff work cross-platform --- .github/workflows/check-and-build-and-test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-and-build-and-test.yml b/.github/workflows/check-and-build-and-test.yml index 3eca206..51e8800 100644 --- a/.github/workflows/check-and-build-and-test.yml +++ b/.github/workflows/check-and-build-and-test.yml @@ -221,10 +221,12 @@ jobs: shared-key: ${{ matrix.supporteds.target }}-latest-variable cache-on-failure: "true" + - name: Delete existing cargo + run: rm ~/.cargo/bin/carg* - name: Delete existing rust-analyzer - run: rm ~/.cargo/bin/rust-analyzer + run: rm ~/.cargo/bin/rust-analyze* - name: Delete existing rustfmt - run: rm ~/.cargo/bin/rustfmt + run: rm ~/.cargo/bin/rustfm* - run: rustup update