Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/bazel_version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[
"6.5.0",

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm sure we do not need this file at all :)

"7.7.1",
"8.5.1"
]
Expand Down
4 changes: 3 additions & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ See the License for the specific language governing permissions and
limitations under the License.
"""

module(name = "rules_codechecker")
module(
name = "rules_codechecker",
)
Comment on lines +17 to +19

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason for this change?


bazel_dep(name = "rules_python", version = "0.32.0")
bazel_dep(name = "rules_cc", version = "0.2.3")
Expand Down
9 changes: 1 addition & 8 deletions test/unit/external_repository/test_external_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,7 @@ def test_compile_commands_external_lib(self):
"compile_commands.json",
)

# The ~override part is a consquence of using Bzlmod.
if self.BAZEL_VERSION.startswith("6"): # type: ignore
pattern1 = "-isystem external/external_lib~override/include"
pattern2 = (
"-isystem bazel-out/k8-fastbuild/bin/external/"
"external_lib~override/include"
)
elif self.BAZEL_VERSION.startswith("7"): # type: ignore
if self.BAZEL_VERSION.startswith("7"): # type: ignore
pattern1 = "-isystem external/external_lib~/include"
pattern2 = (
"-isystem bazel-out/k8-fastbuild/bin/external/"
Expand Down
Loading