bootstrap: tweak verbosity settings by infinity0 · Pull Request #89950 · rust-lang/rust (original) (raw)
Currently the verbosity settings are:
- 2: RUSTC-SHIM envvars get spammed on every invocation, O(30) lines
cargo is passed -v which outputs CLI invocations, O(5) lines - 3: cargo is passed -vv which outputs build script output, O(0-10) lines
This commit changes it to:
- 1: cargo is passed -v, O(5) lines
- 2: cargo is passed -vv, O(10) lines
- 3: RUSTC-SHIM envvars get spammed, O(30) lines
(rust-highfive has picked a reviewer for you, use r? to override)
Currently the verbosity settings are:
- 2: RUSTC-SHIM envvars get spammed on every invocation, O(30) lines cargo is passed -v which outputs CLI invocations, O(5) lines
- 3: cargo is passed -vv which outputs build script output, O(0-10) lines
This commit changes it to:
- 1: cargo is passed -v, O(5) lines
- 2: cargo is passed -vv, O(10) lines
- 3: RUSTC-SHIM envvars get spammed, O(30) lines
📌 Commit d78559a has been approved by Mark-Simulacrum
bors added S-waiting-on-bors
Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
and removed S-waiting-on-review
Status: Awaiting review from the assignee but also interested parties.
labels
bors added a commit to rust-lang-ci/rust that referenced this pull request
…askrgr
Rollup of 8 pull requests
Successful merges:
- rust-lang#89950 (bootstrap: tweak verbosity settings)
- rust-lang#89965 (Fix ICE with
let...else
andref mut
) - rust-lang#89974 (Nicer error message if the user attempts to do let...else if)
- rust-lang#89987 (Check implementing type for
#[doc(hidden)]
) - rust-lang#89989 (rustdoc: Add static size assertion for
clean::Type
) - rust-lang#89990 (rustc_span:
Ident::invalid
->Ident::empty
) - rust-lang#89993 (Remove dead code from
compiletest::json
) - rust-lang#89996 (Bump backtrace)
Failed merges:
r? @ghost
@rustbot
modify labels: rollup