We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f68a003 commit 246038dCopy full SHA for 246038d
1 file changed
ci/cquery_ignore_non_target_and_incompatible.bzl
@@ -17,8 +17,9 @@
17
def format(target):
18
build_opts = build_options(target)
19
20
- # We only want to get targets that are in the target configuration. So we ignore exec and host targets.
21
- if build_opts["//command_line_option:is exec configuration"] or build_opts["//command_line_option:is host configuration"]:
+ # We only want to get targets that are in the target configuration. So we ignore exec targets.
+ # Note: "is host configuration" was removed in Bazel 7 as host configuration was fully replaced by exec configuration.
22
+ if build_opts["//command_line_option:is exec configuration"]:
23
return None
24
25
# Ignore targets that are incompatible with the target configuration.
0 commit comments