about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2020-09-12 10:05:10 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2020-09-12 10:05:10 -0400
commite788b1a2fe181124e480b5f841fa71c61b9857f0 (patch)
treefa920c6155e7566414ecb8e30d9ec33f4f0c931d /src/bootstrap
parentfb47bda53daf8a2ace7baa1288d61312ad56975a (diff)
downloadrust-e788b1a2fe181124e480b5f841fa71c61b9857f0.tar.gz
rust-e788b1a2fe181124e480b5f841fa71c61b9857f0.zip
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.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
index 844a29fadae..848edd8f37f 100644
--- a/src/bootstrap/builder.rs
+++ b/src/bootstrap/builder.rs
@@ -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());
         }