Skip to content

Commit 2192d5c

Browse files
committed
Print the compared SHAs
1 parent 208cef4 commit 2192d5c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/ci/citool/src/merge_report.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ type JobName = String;
1414
pub fn post_merge_report(job_db: JobDatabase, parent: Sha, current: Sha) -> anyhow::Result<()> {
1515
let jobs = download_all_metrics(&job_db, &parent, &current)?;
1616
let diffs = aggregate_test_diffs(&jobs)?;
17+
18+
println!("Comparing {parent} (base) -> {current} (this PR)\n");
1719
report_test_changes(diffs);
1820

1921
Ok(())

0 commit comments

Comments
 (0)