Skip to content

Commit

Permalink
ci(fix): add env RUSTUP_PERMIT_COPY_RENAME to fix cross-device link e…
Browse files Browse the repository at this point in the history
…rrors (tari-project#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)
```

<!-- Checklist -->
<!-- 1. Is the title of your PR in the form that would make nice release
notes? The title, excluding the conventional commit
tag, will be included exactly as is in the CHANGELOG, so please think
about it carefully. -->


Breaking Changes
---

- [x] None
- [ ] Requires data directory on base node to be deleted
- [ ] Requires hard fork
- [ ] Other - Please specify

<!-- Does this include a breaking change? If so, include this line as a
footer -->
<!-- BREAKING CHANGE: Description what the user should do, e.g. delete a
database, resync the chain -->
  • Loading branch information
leet4tari authored Jul 29, 2024
1 parent 1224b6a commit 5a33bc8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5a33bc8

Please sign in to comment.