We have a new benchmarking machine available, which we would like to use instead of the old collector. This is orthogonal to the current Project Goal where we implement support for multiple collector machines.
Current plan:
The move to the new machine was documented here.
Executed the following SQL scripts to handle switchover of stable results:
UPDATE artifact
SET name = CONCAT('ax41-', name)
WHERE type = 'release' AND name NOT LIKE '%-ax42';
To give prefix to old artifacts (the dashboard only loads release artifacts starting with "1." or "beta-"
And then
UPDATE artifact
SET name = SUBSTRING(name, 1, LENGTH(name) - 5)
WHERE type = 'release' AND name LIKE '%-ax42';
The first master PR benchmarked by the new machine was rust-lang/rust#141875 (commit rust-lang/rust@6988a8f).
We have a new benchmarking machine available, which we would like to use instead of the old collector. This is orthogonal to the current Project Goal where we implement support for multiple collector machines.
Current plan:
rustc-perfserver simpleinfra#736cargostable benchmark #2173style-servostable benchmark #2174cargocompilable with modern rustc and re-enable stable benchmarks #2179)The move to the new machine was documented here.
Executed the following SQL scripts to handle switchover of stable results:
To give prefix to old artifacts (the dashboard only loads release artifacts starting with "1." or "beta-"
And then
The first master PR benchmarked by the new machine was rust-lang/rust#141875 (commit rust-lang/rust@6988a8f).