Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions site/src/github/triage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,14 @@ pub async fn changed_benchmarks_in_rollup(
});
// Include newly failed benchmarks so we can triage which PRs broke them
let newly_failed_benchmarks = comparison.newly_failed_benchmarks.into_keys();
let changed_benchmarks = compile_benchmarks.chain(newly_failed_benchmarks);
Ok(changed_benchmarks.collect())

let mut changed_benchmarks = compile_benchmarks
.chain(newly_failed_benchmarks)
.collect::<Vec<_>>();
changed_benchmarks.sort();
changed_benchmarks.dedup();

Ok(changed_benchmarks)
}

#[cfg(test)]
Expand Down
Loading