Skip to content

Commit

Permalink
chore: upgrade to Bazel 6.4 (#104)
Browse files Browse the repository at this point in the history
This is a prefactor to introducing bzlmod support
  • Loading branch information
alexeagle authored Feb 20, 2024
1 parent be6fc3a commit 0ffe497
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.4.1
6.5.0
9 changes: 2 additions & 7 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@ jobs:
steps:
# Checks-out the repository under $GITHUB_WORKSPACE, so the job can access it
- uses: actions/checkout@v4

- name: Setup Bazel
uses: abhinavsingh/setup-bazel@v3
with:
# Must match version in repo's .bazelversion file.
version: 5.4.1

- name: Run tests
run: bazel test //...
- name: Run integration tests
run: ./test.sh
13 changes: 12 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
":dependencyDashboard",
":semanticPrefixFixDepsChoreOthers",
"group:monorepos",
"group:recommended",
"replacements:all",
"workarounds:all"
],
"packageRules": [
{
"matchFiles": ["MODULE.bazel"],
"enabled": false
}
]
}
2 changes: 2 additions & 0 deletions test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ mypy_test(

mypy_test(
name = "broken_mypy_test",
tags = ["manual"],
deps = [":broken_mypy_typings"],
)

Expand All @@ -60,6 +61,7 @@ mypy_test(

mypy_test(
name = "broken_imported_mypy_test",
tags = ["manual"],
deps = [":broken_imported_mypy_typings"],
)

Expand Down

0 comments on commit 0ffe497

Please sign in to comment.