Skip to content
2 changes: 1 addition & 1 deletion src/ci/citool/src/analysis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ pub fn output_largest_duration_changes(
println!("# Job duration changes");
for (index, entry) in changes.into_iter().take(10).enumerate() {
println!(
"{}. {}: {:.1}s -> {:.1}s ({:.1}%)",
"{}. {}: {:.1}s -> {:.1}s ({:+.1}%)",
index + 1,
format_job_link(job_info_resolver, job_metrics, entry.job),
entry.before.as_secs_f64(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
// If the stderr file changes, make sure the warning points at the URL!

#![deny(rustdoc::bare_urls)]
#![doc=include_str!("auxiliary/include-str-bare-urls.md")]
#![doc=include_str!("../auxiliary/include-str-bare-urls.md")]

//~? ERROR this URL is not a hyperlink
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error: this URL is not a hyperlink
--> $DIR/auxiliary/include-str-bare-urls.md:1:11
--> $DIR/../auxiliary/include-str-bare-urls.md:1:11
|
LL | HEADS UP! https://example.com MUST SHOW UP IN THE STDERR FILE!
| ^^^^^^^^^^^^^^^^^^^
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
error: unopened HTML tag `script`
--> remapped_path/remap-path-prefix-lint.rs:9:5
--> remapped_path/lints/remap-path-prefix-lint.rs:9:5
|
LL | /// </script>
| ^^^^^^^^^
|
note: the lint level is defined here
--> remapped_path/remap-path-prefix-lint.rs:7:9
--> remapped_path/lints/remap-path-prefix-lint.rs:7:9
|
LL | #![deny(rustdoc::invalid_html_tags)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
File renamed without changes.
2 changes: 2 additions & 0 deletions tests/ui/traits/generic-cow-inference-regression.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//@[new] compile-flags: -Znext-solver
//@ revisions: old new
//@ run-pass

// regression test for #147964:
Expand Down
12 changes: 6 additions & 6 deletions triagebot.toml
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ trigger_files = [
zulip_stream = 245100 # #t-compiler/prioritization/alerts
topic = "#{number} {title}"
message_on_add = """\
@*WG-prioritization/alerts* issue #{number} has been requested for prioritization.
Issue #{number} has been requested for prioritization.

# [Procedure](https://forge.rust-lang.org/compiler/prioritization.html)
- Priority?
Expand Down Expand Up @@ -738,12 +738,12 @@ message_on_reopen = "PR #{number} has been reopened. Pinging @*T-rustdoc*."
[notify-zulip."beta-nominated".compiler]
required_labels = ["T-compiler"]
zulip_stream = 474880 # #t-compiler/backports
topic = "#{number}: beta-backport nomination"
topic = "#{number}: beta-nominated"
message_on_add = [
"""\
PR #{number} "{title}" fixes a regression.
{recipients}, please evaluate nominating this PR for backport.
The following poll is a vibe-check and not binding.
PR #{number} "{title}" fixes a regression and has been nominated for backport.
{recipients}, what do you think about it?
This topic will help T-compiler getting context about it.
""",
"""\
/poll Should #{number} be beta backported?
Expand All @@ -757,7 +757,7 @@ message_on_remove = "PR #{number}'s beta-nomination has been removed."
[notify-zulip."beta-accepted".compiler]
required_labels = ["T-compiler"]
zulip_stream = 474880 # #t-compiler/backports
# Put it in the same thread as beta-nominated.
# Put it in the same Zulip topic as beta-nominated.
topic = "#{number}: beta-nominated"
message_on_add = "PR #{number} has been **accepted** for **beta** backport."

Expand Down
Loading