-
Notifications
You must be signed in to change notification settings - Fork 109
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
"make test" fails #394
Comments
You should be able to determine your toolchain version by running There are two changes we could make that may improve the situation:
Option 1 has the drawbacks of making CI slower and making Option 2 would effectively declare a "minimum supported Rust version" (MSRV for short). That has some benefits of its own. The drawback is that by specifying a particular Rust version, Between the above two options as well as the implicit third option of "leave things as-is" (possibly with better documentation?), I'm not sure what to do. |
Thanks, I had 1.58 installed. Given that the container I use for Tock already has several Rusts and just crossed 6GiB, marking itself for extermination, I think pinning to a version like in 2. makes more sense. I would also add a target "update" for when the version changes and the user (like me) doesn't know how to use rustup. Does that sound good? |
Minimizing install size is an argument for option 1, not option 2. In option 1, you keep one toolchain (
That seems reasonable to me. |
Here I thought that updating one version of stable to another would keep the older versions. As another argument against 2., I think I somehow ended up with 1.59.0 unstable where I had some other version before. I'm going to have to get a little more comfortable with rustup before attempting to fix this. |
"make test-stable" fails here after running "make setup":
The issue is in the "+stable" in
libtock-rs/Makefile
Line 112 in 7e60597
I'm not sure how to get the rustc version that is in use through this command. Perhspa make setup should update it to some pre-approved version.
The text was updated successfully, but these errors were encountered: