diff --git a/site/src/comparison.rs b/site/src/comparison.rs index de7a5bf0a..6a5b85028 100644 --- a/site/src/comparison.rs +++ b/site/src/comparison.rs @@ -1000,8 +1000,8 @@ impl TestResultComparison { .unwrap(); writeln!( summary, - " (up to {:.1}% on `{}` builds of `{}`)", - percent, self.scenario, self.benchmark + " (up to {:.1}% on `{}` builds of `{} {}`)", + percent, self.scenario, self.benchmark, self.profile ) .unwrap(); } diff --git a/site/static/help.html b/site/static/help.html index 3d296672b..f23237219 100644 --- a/site/static/help.html +++ b/site/static/help.html @@ -54,8 +54,20 @@

@rust-timer commands

<RUNS> times. -

@rust-timer has more commands than just @rust-timer queue, but the - queue command is the most used. +

@rust-timer has + more commands + than just @rust-timer queue, but the queue command is the most used. +

+

@rust-timer build $commit will queue a perf run for the given commit $commit. + It is usually invoked with the commit from a successful "try" run. (The + queue command can be seen as a shortcut that automatically selects the + "try" run's commit for the build command) + This command also supports the same include, exclude, and runs options + as @rust-timer queue. +

+

+ The other two commands are a work in progress and will be documented here when they're + finalized. They are dedicated to helping diagnose the cause of regressions in rollup PRs.