From a141f71e8a3b0c14a09e698995578a37eecb8b61 Mon Sep 17 00:00:00 2001 From: Maksim Bondarenkov Date: Mon, 21 Jul 2025 16:01:48 +0300 Subject: [PATCH] opt-dist: set `build_llvm` to false for WindowsCi suggested in https://github.com/rust-lang/rust/pull/143898#issuecomment-3094463268. see https://github.com/rust-lang/rust/pull/143898#issuecomment-3072013360 as the reason for such test --- src/tools/opt-dist/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/opt-dist/src/main.rs b/src/tools/opt-dist/src/main.rs index d0e6badede6e7..4b21aed6261d3 100644 --- a/src/tools/opt-dist/src/main.rs +++ b/src/tools/opt-dist/src/main.rs @@ -206,7 +206,7 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec)> .skipped_tests(vec![]) .run_tests(true) .fast_try_build(is_fast_try_build) - .build_llvm(true) + .build_llvm(false) .build()?; (env, shared.build_args)