Use depth 1 in git clone

This commit is contained in:
hkalbasi 2023-12-15 19:09:42 +03:30
parent 4f722165b6
commit fa5a327786

View file

@ -86,7 +86,7 @@ impl Metrics {
fn measure_rustc_tests(&mut self, sh: &Shell) -> anyhow::Result<()> {
eprintln!("\nMeasuring rustc tests");
cmd!(sh, "git clone https://github.com/rust-lang/rust").run()?;
cmd!(sh, "git clone --depth=1 https://github.com/rust-lang/rust").run()?;
let output = cmd!(sh, "./target/release/rust-analyzer rustc-tests ./rust").read()?;
for (metric, value, unit) in parse_metrics(&output) {