We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4801dba commit c9d3147Copy full SHA for c9d3147
.github/workflows/ci.yml
@@ -244,9 +244,9 @@ jobs:
244
continue-on-error: true
245
run: |
246
if [ -f build/metrics.json ]; then
247
- METRICS=build/metrics.json
+ METRICS=build/metrics.json
248
elif [ -f obj/build/metrics.json ]; then
249
- METRICS=obj/build/metrics.json
+ METRICS=obj/build/metrics.json
250
else
251
echo "No metrics.json found"
252
exit 0
src/ci/citool/src/metrics.rs
@@ -57,9 +57,9 @@ pub fn download_auto_job_metrics(
57
Ok(metrics) => Some(metrics),
58
Err(error) => {
59
eprintln!(
60
- r#"Did not find metrics for job `{}` at `{}`: {error:?}.
+ r#"Did not find metrics for job `{}` at `{parent}`: {error:?}.
61
Maybe it was newly added?"#,
62
- job.name, parent
+ job.name
63
);
64
None
65
}
0 commit comments