From 57a1000f137c5ad60e5acabd5faf34ce8fa3030c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Miku=C5=82a?= Date: Mon, 1 Dec 2025 15:54:58 +0100 Subject: [PATCH] Mark windows-gnu* as lacking build with assertions --- src/bootstrap/src/core/build_steps/llvm.rs | 4 ++-- src/ci/github-actions/jobs.yml | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/bootstrap/src/core/build_steps/llvm.rs b/src/bootstrap/src/core/build_steps/llvm.rs index a591be05291fa..5dbfd1eb2b08b 100644 --- a/src/bootstrap/src/core/build_steps/llvm.rs +++ b/src/bootstrap/src/core/build_steps/llvm.rs @@ -210,7 +210,7 @@ pub(crate) fn is_ci_llvm_available_for_target( ("i686-unknown-linux-gnu", false), ("x86_64-unknown-linux-gnu", true), ("x86_64-apple-darwin", true), - ("x86_64-pc-windows-gnu", true), + ("x86_64-pc-windows-gnu", false), ("x86_64-pc-windows-msvc", true), // tier 2 with host tools ("aarch64-unknown-linux-musl", false), @@ -227,7 +227,7 @@ pub(crate) fn is_ci_llvm_available_for_target( ("powerpc64le-unknown-linux-musl", false), ("riscv64gc-unknown-linux-gnu", false), ("s390x-unknown-linux-gnu", false), - ("x86_64-pc-windows-gnullvm", true), + ("x86_64-pc-windows-gnullvm", false), ("x86_64-unknown-freebsd", false), ("x86_64-unknown-illumos", false), ("x86_64-unknown-linux-musl", false), diff --git a/src/ci/github-actions/jobs.yml b/src/ci/github-actions/jobs.yml index ee10e36e1c37c..e69a658694753 100644 --- a/src/ci/github-actions/jobs.yml +++ b/src/ci/github-actions/jobs.yml @@ -612,16 +612,12 @@ auto: env: SCRIPT: make ci-mingw-x RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu - # There is no dist-x86_64-mingw-alt, so there is no prebuilt LLVM with assertions - NO_DOWNLOAD_CI_LLVM: 1 <<: *job-windows - name: x86_64-mingw-2 env: SCRIPT: make ci-mingw-bootstrap RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu - # There is no dist-x86_64-mingw-alt, so there is no prebuilt LLVM with assertions - NO_DOWNLOAD_CI_LLVM: 1 <<: *job-windows - name: dist-x86_64-msvc