From 2553d9b4a73ba155554b7d99dc42d4304aeae2ab Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Thu, 12 Oct 2023 20:28:18 +0200 Subject: [PATCH] chore: fix sporadic CI failure (#1727) With forcing the copying there are no failures. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index aa374cefd..13e890709 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -375,7 +375,7 @@ commands: git gc # Move things from the home directory to `/tmp` first, so that it can be # restored on executors that have a different home directory. - - run: cp -R ~/.cargo ~/.rustup /tmp/ + - run: cp -fR ~/.cargo ~/.rustup /tmp/ - save_cache: name: "Save rustup cache" key: cargo-v28-e-{{ checksum "rust-toolchain" }}-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}