You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
Hi! We've been succesfully using grcov for some time now and we have recently refactored our codebase. Our Cargo.toml is no longer located at the top-level. Instead it is inside src/rust folder. When running the CI we got error now: no such file or directory, open '/home/runner/work/ide/ide/Cargo.lock', which is true, as it should point to no such file or directory, open '/home/runner/work/ide/ide/src/rust/Cargo.lock' instead. The problem is that GitHub Actions do not provide a way to set up CWD for third party actions and I haven't found any configuration here how to point grcov to some specific root folder. I'd be very thankful for any help! In case this would be important, this is our repo: https://github.com/luna/ide (branch wip/wd/dev, soon the changes will be on master)
The text was updated successfully, but these errors were encountered:
Current fix is putting another Cargo.toml in the root directory of the crate, listing it as a workspace and naming the crates within the directory.
ex:
Hi! We've been succesfully using
grcov
for some time now and we have recently refactored our codebase. OurCargo.toml
is no longer located at the top-level. Instead it is insidesrc/rust
folder. When running the CI we got error now:no such file or directory, open '/home/runner/work/ide/ide/Cargo.lock'
, which is true, as it should point tono such file or directory, open '/home/runner/work/ide/ide/src/rust/Cargo.lock'
instead. The problem is that GitHub Actions do not provide a way to set up CWD for third party actions and I haven't found any configuration here how to pointgrcov
to some specific root folder. I'd be very thankful for any help! In case this would be important, this is our repo: https://github.com/luna/ide (branch wip/wd/dev, soon the changes will be on master)The text was updated successfully, but these errors were encountered: