aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVlad Serebrennikov <serebrennikov.vladislav@gmail.com>2024-05-22 00:14:45 +0400
committerGitHub <noreply@github.com>2024-05-22 00:14:45 +0400
commit243611ed4ce69c3c6f94092f12fa5703dfcb2c9f (patch)
tree8ad2e771db2bfa4762c87a7bf41522d40b21e6e9
parent687039bce91e90f87d68fb0c409baffaae16649e (diff)
downloadllvm-243611ed4ce69c3c6f94092f12fa5703dfcb2c9f.zip
llvm-243611ed4ce69c3c6f94092f12fa5703dfcb2c9f.tar.gz
llvm-243611ed4ce69c3c6f94092f12fa5703dfcb2c9f.tar.bz2
Disable compiling and testing Flang on Clang changes (#92740)
This patch aims to rectify the Windows CI situation by decoupling Clang changes from Flang test suite, which is causing Windows CI to "pause" for 20 minutes (details can be found [here](https://discourse.llvm.org/t/flang-tests-are-extremely-slow-on-windows/78591/11)). This even seems desirable in the long run, because it was highlighted that the only part of Clang that Flang depends on is Driver ([Discourse post](https://discourse.llvm.org/t/flang-tests-are-extremely-slow-on-windows/78591/14)). Importantly, this patch leaves the question of _entirely_ disabling Flang tests on Windows CI out of scope.
-rwxr-xr-x.ci/generate-buildkite-pipeline-premerge2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/generate-buildkite-pipeline-premerge b/.ci/generate-buildkite-pipeline-premerge
index 78a9cb7..e1c66ac 100755
--- a/.ci/generate-buildkite-pipeline-premerge
+++ b/.ci/generate-buildkite-pipeline-premerge
@@ -68,7 +68,7 @@ function compute-projects-to-test() {
done
;;
clang)
- for p in clang-tools-extra compiler-rt flang lldb cross-project-tests; do
+ for p in clang-tools-extra compiler-rt lldb cross-project-tests; do
echo $p
done
;;