Skip to content

Rollup of 10 pull requests #143919

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

Merged
merged 29 commits into from
Jul 14, 2025
Merged
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7fc2127
bootstrap/miri: avoid rebuilds for test builds
RalfJung Jul 9, 2025
ef5c209
tidy: clippy fixes
hkBst Jul 9, 2025
a4e994e
tidy: simplify fluent file extension checking
hkBst Jul 10, 2025
9bd4c90
tidy: move to edition 2024
hkBst Jul 10, 2025
6356faf
tidy: use flatten instead of manual flatten
hkBst Jul 10, 2025
8bf88a2
tidy: use write_all
hkBst Jul 10, 2025
b703451
refine comment
RalfJung Jul 12, 2025
75561c4
Port `#[link_ordinal]` to the new attribute parsing infrastructure.
Periodic1911 Jun 29, 2025
a2d4139
Use zero for initialized Once state
orlp Jul 13, 2025
f041962
Add comment why we use zero for COMPLETE
orlp Jul 13, 2025
a3c90b6
Run bootstrap tests sooner in the `x test` pipeline
Kobzol Jul 13, 2025
25794b1
Compiletest: Simplify {Html,Json}DocCk directive handling
fmease Jul 12, 2025
6b02597
update issue number for `const_trait_impl`
fee1-dead Jul 13, 2025
937ef93
Bootstrap's `tool.TOOL_NAME.features` now works on any subcommand
Stypox Jul 10, 2025
b3ed035
Only compare tool name to apply features to
Stypox Jul 13, 2025
940aa20
Add comment about features not part of "extra-features"
Stypox Jul 13, 2025
6080c75
Change "allocated object" to "allocation".
theemathas Jul 14, 2025
90660f4
tiercheck: clippy fixes
hkBst Jul 14, 2025
39059f6
tiercheck: edition 2024
hkBst Jul 14, 2025
93c1027
Rollup merge of #143217 - Periodic1911:link-ordinal, r=jdonszelmann
Kobzol Jul 14, 2025
33d477f
Rollup merge of #143681 - RalfJung:bootstrap-miri-rebuilds, r=Kobzol
Kobzol Jul 14, 2025
0d4d85b
Rollup merge of #143724 - hkBst:tidy-cleanup, r=Mark-Simulacrum
Kobzol Jul 14, 2025
197ba7e
Rollup merge of #143733 - Stypox:bootstrap-tool-config-any, r=Kobzol
Kobzol Jul 14, 2025
2ec48e0
Rollup merge of #143850 - fmease:comptest-simp-docck-handling, r=jiey…
Kobzol Jul 14, 2025
a7ad680
Rollup merge of #143875 - fee1-dead-contrib:push-zvqrmzrprpzt, r=comp…
Kobzol Jul 14, 2025
70301da
Rollup merge of #143881 - orlp:once-state-repr, r=tgross35
Kobzol Jul 14, 2025
37b5d79
Rollup merge of #143887 - Kobzol:reroder-bootstrap-tests, r=jieyouxu
Kobzol Jul 14, 2025
b5312fe
Rollup merge of #143917 - theemathas:change-allocated-object-to-alloc…
Kobzol Jul 14, 2025
0d69847
Rollup merge of #143918 - hkBst:tier-check-cleanup, r=Kobzol
Kobzol Jul 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/bootstrap/src/core/builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1044,6 +1044,7 @@ impl<'a> Builder<'a> {
Kind::Test => describe!(
crate::core::build_steps::toolstate::ToolStateCheck,
test::Tidy,
test::Bootstrap,
test::Ui,
test::Crashes,
test::Coverage,
Expand Down Expand Up @@ -1098,8 +1099,6 @@ impl<'a> Builder<'a> {
test::RustInstaller,
test::TestFloatParse,
test::CollectLicenseMetadata,
// Run bootstrap close to the end as it's unlikely to fail
test::Bootstrap,
// Run run-make last, since these won't pass without make on Windows
test::RunMake,
),
Expand Down