Fix sysroot metadata in metrics

This commit is contained in:
Laurențiu Nicola 2024-01-17 19:16:32 +02:00
parent 5b62ebc23f
commit 27b0636745

View file

@ -117,6 +117,8 @@ impl Metrics {
sh,
"./target/release/rust-analyzer -q analysis-stats {path} --query-sysroot-metadata"
)
// the sysroot uses `public-dependency`, so we make cargo think it's a nightly
.env("__CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS", "nightly")
.read()?;
for (metric, value, unit) in parse_metrics(&output) {
self.report(&format!("analysis-stats/{name}/{metric}"), value, unit.into());