Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c9d3147

Browse files
committedMar 17, 2025
Small review improvements
1 parent 4801dba commit c9d3147

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ jobs:
244244
continue-on-error: true
245245
run: |
246246
if [ -f build/metrics.json ]; then
247-
METRICS=build/metrics.json
247+
METRICS=build/metrics.json
248248
elif [ -f obj/build/metrics.json ]; then
249-
METRICS=obj/build/metrics.json
249+
METRICS=obj/build/metrics.json
250250
else
251251
echo "No metrics.json found"
252252
exit 0

‎src/ci/citool/src/metrics.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ pub fn download_auto_job_metrics(
5757
Ok(metrics) => Some(metrics),
5858
Err(error) => {
5959
eprintln!(
60-
r#"Did not find metrics for job `{}` at `{}`: {error:?}.
60+
r#"Did not find metrics for job `{}` at `{parent}`: {error:?}.
6161
Maybe it was newly added?"#,
62-
job.name, parent
62+
job.name
6363
);
6464
None
6565
}

0 commit comments

Comments
 (0)
Failed to load comments.