Skip to content

Rollup of 7 pull requests #138630

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 28 commits into from
Mar 18, 2025
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
50c659f
Clarify "owned data" in E0515.md
hkBst Mar 14, 2025
899eed1
Refactor metrics generation step
Kobzol Mar 14, 2025
301c384
Do not fail the build if metrics postprocessing or DataDog upload fails
Kobzol Mar 14, 2025
09d44a4
Print metrics postprocessing to stdout
Kobzol Mar 14, 2025
e757dea
Refactor metrics and analysis in citool to distinguish them better
Kobzol Mar 15, 2025
413fd52
Print number of found test diffs
Kobzol Mar 15, 2025
6c24c9c
Use first-level heading for test differences header
Kobzol Mar 15, 2025
30d5757
Print test diffs into GitHub summary
Kobzol Mar 15, 2025
634a11e
Add bootstrap stage to test names
Kobzol Mar 15, 2025
232be86
Add a helper function for outputting details
Kobzol Mar 15, 2025
b4cccf0
Put test differences into a `<details>` section and add better explan…
Kobzol Mar 15, 2025
e845318
Do not error out on missing parent metrics
Kobzol Mar 15, 2025
4801dba
Reformat code
Kobzol Mar 15, 2025
7c792e2
Only use `DIST_TRY_BUILD` for try jobs that were not selected explicitly
Kobzol Mar 15, 2025
b2fda93
Add a note to rustc-dev-guide
Kobzol Mar 16, 2025
6698c26
Fix `is_relevant_impl`.
nnethercote Mar 12, 2025
b148106
Fix ICE: attempted to remap an already remapped filename
charmitro Mar 16, 2025
0ee99cf
rustc_target: Add target feature constraints for LoongArch
heiher Mar 17, 2025
36f6bc5
Flatten `if`s in `rustc_codegen_ssa`
yotamofek Mar 17, 2025
f2ddbcd
Move `hir::Item::ident` into `hir::ItemKind`.
nnethercote Mar 6, 2025
c9d3147
Small review improvements
Kobzol Mar 17, 2025
e1acc68
Rollup merge of #138384 - nnethercote:hir-ItemKind-idents, r=fmease
matthiaskrgr Mar 17, 2025
01062ba
Rollup merge of #138508 - hkBst:patch-3, r=wesleywiser
matthiaskrgr Mar 17, 2025
5786233
Rollup merge of #138531 - Kobzol:test-diff-try-build, r=marcoieni
matthiaskrgr Mar 17, 2025
c19ce9d
Rollup merge of #138533 - Kobzol:try-job-auto-tests, r=marcoieni
matthiaskrgr Mar 17, 2025
cd4dfd7
Rollup merge of #138556 - charmitro:already-remapped-filename, r=Guil…
matthiaskrgr Mar 17, 2025
aa53a72
Rollup merge of #138608 - heiher:issue-116344, r=RalfJung
matthiaskrgr Mar 17, 2025
597500d
Rollup merge of #138619 - yotamofek:pr/codegen_ssa/flatten-ifs, r=lcnr
matthiaskrgr Mar 17, 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
Prev Previous commit
Next Next commit
Add a note to rustc-dev-guide
  • Loading branch information
Kobzol committed Mar 16, 2025
commit b2fda93aacd2ad795199140068b9c8a055840b0b
2 changes: 2 additions & 0 deletions src/doc/rustc-dev-guide/src/tests/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ their results can be seen [here](https://github.com/rust-lang-ci/rust/actions),
although usually you will be notified of the result by a comment made by bors on
the corresponding PR.

Note that if you start the default try job using `@bors try`, it will skip building several `dist` components and running post-optimization tests, to make the build duration shorter. If you want to execute the full build as it would happen before a merge, add an explicit `try-job` pattern with the name of the default try job (currently `dist-x86_64-linux`).

Multiple try builds can execute concurrently across different PRs.

<div class="warning">
Expand Down
Loading