-
Notifications
You must be signed in to change notification settings - Fork 13.4k
redesign stage 0 std follow-ups part2 #142002
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
Conversation
Signed-off-by: onur-ozkan <[email protected]>
Signed-off-by: onur-ozkan <[email protected]>
Signed-off-by: onur-ozkan <[email protected]>
Testing locally |
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.
Thanks
Testing
nnethercote's minimal bootstrap.toml
[rust]
download-rustc = false
./x check
: OK./x check rustdoc
: OK
[rust]
download-rustc = true
./x check
: OK./x check rustdoc
: OK
./x check
on compiler
No bootstrap.toml
:
./x check compiler
: OK./x check rustc
: OK
[rust]
download-rustc = true
./x check
: OK, already checked earlier./x check compiler
: OK./x check rustc
: OK
./x test library
profile = "library" # <- with `download-rustc = "if-unchanged"` default
./x test library/
: OK
@bors r+ rollup p=10 (contributor workflow) |
redesign stage 0 std follow-ups part2 Fixes three bugs: 1. `x check` fails when run on rustdoc without `download-rustc` enabled. (1st commit) 2. `x check` fails when run on the compiler with `download-rustc` enabled. (2nd commit) 3. `x test library` fails with `download-rustc` enabled. (3rd commit) Fixes rust-lang#142018 (case 1) Fixes rust-lang#141983 (case 3)
Rollup of 9 pull requests Successful merges: - #141271 (Streamline some attr parsing APIs) - #141570 (Fix incorrect eq_unspanned in TokenStream) - #141857 (coretests: move float tests from num to floats module and use a more flexible macro to generate them) - #141893 (remove `f16: From<u16>`) - #141924 (Lightly tweak docs for BTree{Map,Set}::extract_if) - #141939 (exact_div: add tests) - #141959 (Add more missing 2015 edition directives) - #142002 (redesign stage 0 std follow-ups part2) - #142007 (Improve some `Visitor` comments.) r? `@ghost` `@rustbot` modify labels: rollup
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing 61413ae (parent) -> df8102f (this PR) Test differencesNo test diffs found Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard df8102fe5f24f28a918660b0cd918d7331c3896e --output-dir test-dashboard And then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
To prepare for merging from rust-lang/rust, set the version file to: df8102f Auto merge of rust-lang#142002 - onur-ozkan:follow-ups2, r=jieyouxu
Finished benchmarking commit (df8102f): comparison URL. Overall result: ❌ regressions - no action needed@rustbot label: -perf-regression Instruction countThis is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.
Max RSS (memory usage)Results (primary -4.6%, secondary 1.9%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResults (secondary -2.8%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 749.479s -> 749.348s (-0.02%) |
To prepare for merging from rust-lang/rust, set the version file to: df8102f Auto merge of rust-lang#142002 - onur-ozkan:follow-ups2, r=jieyouxu
Fixes three bugs:
x check
fails when run on rustdoc withoutdownload-rustc
enabled. (1st commit)x check
fails when run on the compiler withdownload-rustc
enabled. (2nd commit)x test library
fails withdownload-rustc
enabled. (3rd commit)Fixes #142018 (case 1)
Fixes #141983 (case 3)