From 5a33bc881b32afcf15f10f1bc2fe735be754be15 Mon Sep 17 00:00:00 2001 From: "C.Lee Taylor" <47312074+leet4tari@users.noreply.github.com> Date: Mon, 29 Jul 2024 10:17:35 +0200 Subject: [PATCH] ci(fix): add env RUSTUP_PERMIT_COPY_RENAME to fix cross-device link errors (#6434) Description add env RUSTUP_PERMIT_COPY_RENAME to fix cross-device link errors for ci-stable builds test Motivation and Context Fix ci stable build test which has the following error ```bash error: could not rename component file from ... ... Invalid cross-device link (os error 18) ``` Breaking Changes --- - [x] None - [ ] Requires data directory on base node to be deleted - [ ] Requires hard fork - [ ] Other - Please specify --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a91c574a54..4cede9e72d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,6 +123,8 @@ jobs: # on stable Rust. name: cargo check with stable runs-on: [self-hosted, ubuntu-high-cpu] + env: + RUSTUP_PERMIT_COPY_RENAME: true steps: - name: checkout uses: actions/checkout@v4