about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-09-12 15:44:07 +0000
committerbors <bors@rust-lang.org>2020-09-12 15:44:07 +0000
commit7adeb2c795239e2e5ffbe4cd4672157c8e1b9277 (patch)
tree66dd9ddb5f3bc250193fe8dfb68ebb35fc659731 /src/bootstrap
parentbd51226305ec50b15d1fc8d7a5d996e70c8608c0 (diff)
parente788b1a2fe181124e480b5f841fa71c61b9857f0 (diff)
downloadrust-7adeb2c795239e2e5ffbe4cd4672157c8e1b9277.tar.gz
rust-7adeb2c795239e2e5ffbe4cd4672157c8e1b9277.zip
Auto merge of #76639 - Mark-Simulacrum:ci-hosts, r=pietroalbini
Add host triples to CI builders

This is a follow-up to #76415, which changed how x.py interprets cross-compilation target/host flags. This should fix the known cases, but I'm still working through CI logs before/after that PR to identify if anything else is missing.
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 31d4f1f28a8..0f18660c0e1 100644
--- a/src/bootstrap/builder.rs
+++ b/src/bootstrap/builder.rs
@@ -1421,7 +1421,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());
         }