diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-03-15 14:34:23 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-15 14:34:23 +0000 |
commit | 633637b8bac778fb16b974674c3d87debdd1a8ef (patch) | |
tree | 87ce2f2ff95264c3e306f0aee9d1936c89038eb3 /xtask | |
parent | f2c39d0cdf708d6178740385f58d6b2b657e411a (diff) | |
parent | aa6db3f36a3d8f55c5aa8c88d60d87bfaf79decc (diff) |
Merge #8030
8030: Add diesel to the benchmark suite r=lnicola a=weiznich
This commit adds diesel to the continuosly run benchmark suite. Diesel
heavily relies internally on macro generated code. Additionally there
are lots of complicated trait releations used as part of their API.
Therefore this benchmark will be quite sensitive to:
* Performance related changes in the macro expanding code
* Performance related changes while resolving trait bounds
CC #7950
cc @lnicola
Co-authored-by: Georg Semmler <[email protected]>
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/src/metrics.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xtask/src/metrics.rs b/xtask/src/metrics.rs index 72de92c64..3d8d7589b 100644 --- a/xtask/src/metrics.rs +++ b/xtask/src/metrics.rs | |||
@@ -26,7 +26,7 @@ impl flags::Metrics { | |||
26 | } | 26 | } |
27 | { | 27 | { |
28 | let _d = pushd("./target/rustc-perf")?; | 28 | let _d = pushd("./target/rustc-perf")?; |
29 | cmd!("git reset --hard 1d9288b0da7febf2599917da1b57dc241a1af033").run()?; | 29 | cmd!("git reset --hard c52ee623e231e7690a93be88d943016968c1036b").run()?; |
30 | } | 30 | } |
31 | 31 | ||
32 | let _env = pushenv("RA_METRICS", "1"); | 32 | let _env = pushenv("RA_METRICS", "1"); |
@@ -35,6 +35,7 @@ impl flags::Metrics { | |||
35 | metrics.measure_analysis_stats_self()?; | 35 | metrics.measure_analysis_stats_self()?; |
36 | metrics.measure_analysis_stats("ripgrep")?; | 36 | metrics.measure_analysis_stats("ripgrep")?; |
37 | metrics.measure_analysis_stats("webrender")?; | 37 | metrics.measure_analysis_stats("webrender")?; |
38 | metrics.measure_analysis_stats("diesel/diesel")?; | ||
38 | 39 | ||
39 | if !self.dry_run { | 40 | if !self.dry_run { |
40 | let _d = pushd("target")?; | 41 | let _d = pushd("target")?; |