Fixed issues with --features=external_include_paths#243
Open
furtib wants to merge 6 commits into
Open
Conversation
Szelethus
requested changes
Jun 16, 2026
Szelethus
left a comment
Contributor
There was a problem hiding this comment.
Bazel 6.5.0 CI jobs break:
Error: 'CompilationContext' value has no field or method 'external_includes'
If this is a bazel 6 specific issue, then I suggest this might be a sign that it is time to officially stop supporting it.
furtib
commented
Jun 16, 2026
14fc533 to
5e1a45e
Compare
fa5bbb7 to
e037af2
Compare
e1b26ff to
296c30f
Compare
3b85d87 to
bfc52de
Compare
furtib
commented
Jun 30, 2026
| BAZEL_BIN_DIR = os.path.join("bazel-bin") | ||
| BAZEL_TESTLOGS_DIR = os.path.join("bazel-testlogs") | ||
| BAZEL_VERSION = None | ||
| BAZEL_VERSION: str = "" |
Contributor
Author
There was a problem hiding this comment.
This fixes type warnings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why:
We want to support running analysis with
--features=external_include_paths.What:
external_includesto compile commands.external_includesof dependencies to compile commands.Addresses:
Fixes: #236