1
Fork 0

Add a note about interpreting job duration changes

This commit is contained in:
Jakub Beránek 2025-03-27 11:29:48 +01:00
parent 4a43675353
commit a37cef9ee6
2 changed files with 9 additions and 1 deletions

View file

@ -238,6 +238,15 @@ pub fn output_largest_duration_changes(job_metrics: &HashMap<JobName, JobMetrics
entry.change
);
}
println!();
output_details("How to interpret the job duration changes?", || {
println!(
r#"Job durations can vary a lot, based on the actual runner instance
that executed the job, system noise, invalidated caches, etc. The table above is provided
mostly for t-infra members, for simpler debugging of potential CI slow-downs."#
);
});
}
#[derive(Default)]

View file

@ -23,7 +23,6 @@ where
println!(
r"<details>
<summary>{summary}</summary>
"
);
func();