Print all step timings
It is really painful to inspect differences in what was built in CI if things are appearing and disappearing randomly as they hover around the 100ms mark. No matter what we choose there's always going to be quite a bit of variability on CI in timing, so we're going to see things appear and vanish.
This commit is contained in:
parent
fb47bda53d
commit
e788b1a2fe
1 changed files with 1 additions and 1 deletions
|
@ -1424,7 +1424,7 @@ impl<'a> Builder<'a> {
|
|||
(out, dur - deps)
|
||||
};
|
||||
|
||||
if self.config.print_step_timings && dur > Duration::from_millis(100) {
|
||||
if self.config.print_step_timings {
|
||||
println!("[TIMING] {:?} -- {}.{:03}", step, dur.as_secs(), dur.subsec_millis());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue