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
We can, and should, frequently upgrade the rust toolchain. However, there are often new lints added, which, combined with our -Dwarnings policy, cause the pipeline to fail.
The text was updated successfully, but these errors were encountered:
A frequent source of CI failures (here, but mostly elsewhere) is not
pinning your compiler version. As new versions are released, new lints
and errors are added, making a project that used to build without
errors, now fail simply because there's a new release.
Now, we can, and SHOULD frequently upgrade our toolchain, but it should
still be pinned, so that we can do it on our terms.
Closes#36.
We can, and should, frequently upgrade the rust toolchain. However, there are often new lints added, which, combined with our
-Dwarnings
policy, cause the pipeline to fail.The text was updated successfully, but these errors were encountered: