-
Notifications
You must be signed in to change notification settings - Fork 50
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
Nightly Toolchain Note #675
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #675 +/- ##
=======================================
Coverage 60.61% 60.61%
=======================================
Files 170 170
Lines 10387 10387
=======================================
Hits 6296 6296
Misses 4091 4091 ☔ View full report in Codecov by Sentry. |
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.
LGTM, we can also consider running rustup toolchain install nightly
inside the script directly, as it's pretty fast when the nightly toolchain is already installed.
Fair. Is there a pattern or precedence set in other crates that use nightly commands in scripts? I personally like installing toolchains manually but I'm totally fine either way. |
I know |
Good point. I have moved it to the script & updated the readme in this commit: 567f1db |
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.
The lint CI is failing, you need to run npm run prettier
because the readme changes are exceeding the line wrapping
Type of change
Objective
Add a note about the required nightly toolchain. Without this people will receive an error when attempting to run the
build-api.sh
script.For posterity, the nightly toolchain is required for certain features deemed unsafe. You can find more info here: #512
Code changes
Before you submit