-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WEB3-367: Install r0vm #463
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To make the toolchain version of risc0-ethereum
independent of the toolchain version of risc0
, I added the use of rustup
to ensure that the active version is installed.
I also changed it to download rzup
instead of building it from scratch.
rust-toolchain.toml
Outdated
@@ -1,5 +1,5 @@ | |||
[toolchain] | |||
channel = "1.81" | |||
channel = "1.83" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am really not a fan of this, as - especially for risc0-ethereum - it leads to super cryptic error messages, as alloy has already switched to rust 1.83, but all these crates are not (yet) supported in our ZKVM.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Has been addressed in ab97318
@@ -73,10 +78,15 @@ runs: | |||
- name: install cargo-risczero from crates.io |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we actually still need to install cargo-risczero at all? Hasn't it been completely replaced by rzup?
In the cargo-risczero-install action, specifically the path using the version (rather than the ref) the r0vm installation was missing --------- Co-authored-by: Wolfgang Welz <[email protected]>
In the cargo-risczero-install action, specifically the path using the version (rather than the ref) the r0vm installation was missing --------- Co-authored-by: Wolfgang Welz <[email protected]>
In the cargo-risczero-install action, specifically the path using the version (rather than the ref) the r0vm installation was missing