Skip to content

Commit

Permalink
chore: change bcr presubmit to drop bazel 6, add last_rc (bazel 8) (#…
Browse files Browse the repository at this point in the history
…2404)

This removes Bazel 6 and adds last_rc (Bazel 8) in our BCR presubmit
config. Right now, BCR releases fail because they try to test with Bazel
6, which doesn't work.
  • Loading branch information
rickeylev authored Nov 13, 2024
1 parent 7b95ea6 commit 1738faf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .bcr/gazelle/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ bcr_test_module:
module_path: "../examples/bzlmod_build_file_generation"
matrix:
platform: ["debian11", "macos", "ubuntu2004", "windows"]
bazel: [6.x, 7.x]
# last_rc is to get latest 8.x release. Replace with 8.x when available.
bazel: [7.x, last_rc]
tasks:
run_tests:
name: "Run test module"
Expand Down
3 changes: 2 additions & 1 deletion .bcr/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ bcr_test_module:
module_path: "examples/bzlmod"
matrix:
platform: ["debian11", "macos", "ubuntu2004", "windows"]
bazel: [6.x, 7.x]
# last_rc is to get latest 8.x release. Replace with 8.x when available.
bazel: [7.x, last_rc]
tasks:
run_tests:
name: "Run test module"
Expand Down

0 comments on commit 1738faf

Please sign in to comment.