[llvm] [bazel][libc] Temporarily disable full_build include tests (PR #216359)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 14 10:01:17 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Walter Lee (googlewalt)
<details>
<summary>Changes</summary>
They are currently broken due to
https://github.com/llvm/llvm-project/commit/1f4574c6033cae84c88ca69bb2b73c9b029925e3. We need a few hours to resolve it, and we're using this to unblock our CI.
---
Full diff: https://github.com/llvm/llvm-project/pull/216359.diff
1 Files Affected:
- (modified) utils/bazel/llvm-project-overlay/libc/test/libc_test_rules.bzl (+2)
``````````diff
diff --git a/utils/bazel/llvm-project-overlay/libc/test/libc_test_rules.bzl b/utils/bazel/llvm-project-overlay/libc/test/libc_test_rules.bzl
index 9aa3073517ac2..f878b200979be 100644
--- a/utils/bazel/llvm-project-overlay/libc/test/libc_test_rules.bzl
+++ b/utils/bazel/llvm-project-overlay/libc/test/libc_test_rules.bzl
@@ -63,6 +63,8 @@ def libc_test(
if full_build:
copts = copts + _FULL_BUILD_COPTS
+ # Temporarily disable full_build tests (currently broken) to unblock CI.
+ tags = tags + ["manual", "notap"]
cc_test(
name = name,
local_defines = local_defines + _TEST_DEFINES + LIBC_CONFIGURE_OPTIONS,
``````````
</details>
https://github.com/llvm/llvm-project/pull/216359
More information about the llvm-commits
mailing list