We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42abfad commit 8647906Copy full SHA for 8647906
src/cli/common.rs
@@ -630,6 +630,11 @@ pub(crate) fn check_non_host_toolchain(
630
631
/// Warns if rustup is running under emulation, such as macOS Rosetta
632
pub(crate) fn warn_if_host_is_emulated(process: &Process) {
633
+ // In rustup's own CI, we wouldn't want host emulation warnings to mess up the
634
+ // end-to-end test results.
635
+ if process.var("RUSTUP_CI").is_ok() {
636
+ return;
637
+ }
638
if TargetTriple::is_host_emulated() {
639
warn!(
640
"Rustup is not running natively. It's running under emulation of {}.",
0 commit comments