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
cargo check and cargo clippy can be fairly fast, because they do not need to actually build the libraries and executables.
However because of the way examples-builder makes our RiscV examples available to the native parts of Ceno, running cargo check or cargo clippy on the native parts leads to a building of the RiscV parts. And that takes a comparatively long time, on a fresh checkout, like in our CI.
This issues tracks our progress on removing this slowdown.
The text was updated successfully, but these errors were encountered:
matthiasgoergens
changed the title
Disable compilation of examples and ceno_rt when running cargo clippy or cargo check
Skip building of examples and ceno_rt when running cargo clippy or cargo checkDec 13, 2024
cargo check
andcargo clippy
can be fairly fast, because they do not need to actually build the libraries and executables.However because of the way
examples-builder
makes our RiscV examples available to the native parts of Ceno, runningcargo check
orcargo clippy
on the native parts leads to a building of the RiscV parts. And that takes a comparatively long time, on a fresh checkout, like in our CI.This issues tracks our progress on removing this slowdown.
The text was updated successfully, but these errors were encountered: