Skip to content

Commit

Permalink
fix(bazelci): run bazelci against bazel 7.0.0
Browse files Browse the repository at this point in the history
- chore: drop bazel `6.3.2` from bazelci matrix
- chore: run buildifier
- fix: disable experimental remote caching flags

Signed-off-by: Sam Gammon <sam@elide.ventures>
  • Loading branch information
sgammon committed Mar 11, 2024
1 parent d6bde1f commit 313d227
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
matrix:
bazel_version: ["6.3.2", "7.0.0"]
bazel_version: ["7.0.0"]
platform: ["macos", "macos_arm64", "ubuntu2004", "windows"]

validate_config: 1
Expand Down
5 changes: 4 additions & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
"GraalVM Rules for Bazel"

module(name = "rules_graalvm", version = "0.11.1")
module(
name = "rules_graalvm",
version = "0.11.1",
)

## JVM version to target.
JAVA_VERSION = "21"
Expand Down
7 changes: 3 additions & 4 deletions tools/bazel/cache.bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ build --incompatible_remote_results_ignore_disk
build --noexperimental_check_output_files
build --nolegacy_important_outputs
build --incompatible_default_to_explicit_init_py
build --experimental_remote_merkle_tree_cache
build --experimental_remote_cache_compression
build --experimental_guard_against_concurrent_changes

build:labs --experimental_remote_merkle_tree_cache
build:labs --experimental_remote_cache_compression
build:labs --experimental_guard_against_concurrent_changes

0 comments on commit 313d227

Please sign in to comment.