From 90a10a23f852e13549fb3971dfbe704bfaf18cb7 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Thu, 12 Oct 2023 17:54:07 +0200 Subject: [PATCH] chore: fix sporadic CI failure 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" }}