Skip to content

Commit bff6ec4

Browse files
authored
Update dependency testing for the internal LLVM repo (#6407)
This test started failing with #6405, but it wasn't caught by our PR testing or the merge queue as the test didn't _appear_ to be impacted by the change (I think). When run explicitly, as the post-commit actions do, it started failing because of the new dependency edge.
1 parent 994e6c9 commit bff6ec4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bazel/check_deps/check_non_test_cc_deps.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@
6868
if repo == "" and not rule.startswith("third_party"):
6969
continue
7070

71+
# LLVM code managed in the Carbon repository is still LLVM code and OK.
72+
if repo == "" and rule.startswith("third_party/llvm:"):
73+
continue
74+
7175
# Utility libraries provided by Bazel that are under a compatible license.
7276
if repo in ("@@rules_cc+", "@@bazel_tools"):
7377
continue

0 commit comments

Comments
 (0)