Allow running x test reference locally#149617
Conversation
Previously this would break for me with: ``` Testing stage2 mdbook src/doc/reference (aarch64-apple-darwin) error: manifest path `mdbook-spec/Cargo.toml` does not exist ``` but then would say "build completed successfully" ... I guess that's related to toolstate somehow. I have no idea how this ever passed in CI.
|
r? @clubby789 rustbot has assigned @clubby789. Use |
|
maybe related: the CI job prints this every time it tests the reference: |
|
The error message is normal (and can safely be ignored), and will be removed in a future update. Can you say more about what issues you ran into, or why these changes seem needed? The way rustbook works is that it overrides the preprocessors. We actually don't want the |
|
hm, ok. i ran into this because the reference failed mysteriously on a PR, and then mysteriously fixed itself again. see #149565 (comment) |
|
There was a problem that the toolstate mechanism broke, which caused some problems. Part of that is a timing issue in that toolstate becomes locked down during "beta week" (the week before branch). #149577 fixed the immediate problem, and you just need to rebase on latest main to resolve that. (#149612 fixes the alerting/toolstate problem that led up to that.) |
|
gotcha, thank you! |
Previously this would break for me with:
but then would say "build completed successfully" ... I guess that's related to toolstate somehow.
I have no idea how this ever passed in CI.