[llvm] ci: Temporarily disable the buildkite job on Windows (PR #81538)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 12 13:34:27 PST 2024
https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/81538
The failure rate is too high.
See https://discourse.llvm.org/t/rfc-future-of-windows-pre-commit-ci/76840
>From eaae08992f8ca8b63370819274db0429efb13f71 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Mon, 12 Feb 2024 21:27:32 +0000
Subject: [PATCH] ci: Temporarily disable the buildkite job on Windows
The failure rate is too high.
See https://discourse.llvm.org/t/rfc-future-of-windows-pre-commit-ci/76840
---
.ci/generate-buildkite-pipeline-premerge | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.ci/generate-buildkite-pipeline-premerge b/.ci/generate-buildkite-pipeline-premerge
index 4ebf304e23d587..b7d23ec57ec8e5 100755
--- a/.ci/generate-buildkite-pipeline-premerge
+++ b/.ci/generate-buildkite-pipeline-premerge
@@ -233,7 +233,9 @@ linux_projects=$(add-dependencies ${linux_projects_to_test} | sort | uniq)
windows_projects_to_test=$(exclude-windows $(compute-projects-to-test ${modified_projects}))
windows_check_targets=$(check-targets ${windows_projects_to_test} | sort | uniq)
-windows_projects=$(add-dependencies ${windows_projects_to_test} | sort | uniq)
+# Temporary disable the windows job.
+# See https://discourse.llvm.org/t/rfc-future-of-windows-pre-commit-ci/76840
+#windows_projects=$(add-dependencies ${windows_projects_to_test} | sort | uniq)
# Generate the appropriate pipeline
if [[ "${linux_projects}" != "" ]]; then
More information about the llvm-commits
mailing list