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
zcash_client_backend dependency is sometimes fetched from a cached location during CI operations, which leads to error like file not found for module compact_formats in z_coin and causes CI to fail.
I have two possible solutions, which involves running one of these command just before cargo /test/build/test commands
rm -rf ~/.cargo/git/checkouts/librustzcash*
or
cargo update -p zcash_client_backend
The text was updated successfully, but these errors were encountered:
I saw this issue couple times.
I noticed compact_formats.rs is a generated src by the build.rs. Perhaps build.rs fails to run sometimes, so there is no compact_formats.rs in the .cargo/git/checkouts/librustzcash installation.
BTW the original zcash/librustzcash now has this compact_formats.rs added in the repo.
I saw this issue couple times. I noticed compact_formats.rs is a generated src by the build.rs. Perhaps build.rs fails to run sometimes, so there is no compact_formats.rs in the .cargo/git/checkouts/librustzcash installation.
BTW the original zcash/librustzcash now has this compact_formats.rs added in the repo.
zcash_client_backend
dependency is sometimes fetched from a cached location during CI operations, which leads to error likefile not found for module compact_formats
in z_coin and causes CI to fail.I have two possible solutions, which involves running one of these command just before cargo /test/build/test commands
or
The text was updated successfully, but these errors were encountered: