From c7f654b683348b92ad2088671fd8efff1d5d659e Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Wed, 19 Jun 2024 16:31:05 +0300 Subject: [PATCH] ci: Only use cargo-quickinstall (#1938) Since binstall is having issues on macOS it seems. Signed-off-by: Lars Eggert --- .github/actions/rust/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/rust/action.yml b/.github/actions/rust/action.yml index d7d2b3a628..88797c0e2e 100644 --- a/.github/actions/rust/action.yml +++ b/.github/actions/rust/action.yml @@ -24,7 +24,7 @@ runs: - name: Install Rust tools shell: bash - run: cargo +${{ inputs.version }} quickinstall cargo-llvm-cov cargo-nextest flamegraph cargo-hack cargo-mutants hyperfine + run: cargo +${{ inputs.version }} quickinstall --no-binstall --no-fallback cargo-llvm-cov cargo-nextest flamegraph cargo-hack cargo-mutants hyperfine # sccache slows CI down, so we leave it disabled. # Leaving the steps below commented out, so we can re-evaluate enabling it later.