Print the compared SHAs
This commit is contained in:
parent
208cef45fc
commit
2192d5c4e2
1 changed files with 2 additions and 0 deletions
|
@ -14,6 +14,8 @@ type JobName = String;
|
||||||
pub fn post_merge_report(job_db: JobDatabase, parent: Sha, current: Sha) -> anyhow::Result<()> {
|
pub fn post_merge_report(job_db: JobDatabase, parent: Sha, current: Sha) -> anyhow::Result<()> {
|
||||||
let jobs = download_all_metrics(&job_db, &parent, ¤t)?;
|
let jobs = download_all_metrics(&job_db, &parent, ¤t)?;
|
||||||
let diffs = aggregate_test_diffs(&jobs)?;
|
let diffs = aggregate_test_diffs(&jobs)?;
|
||||||
|
|
||||||
|
println!("Comparing {parent} (base) -> {current} (this PR)\n");
|
||||||
report_test_changes(diffs);
|
report_test_changes(diffs);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue