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
- fix: disable windows build until it is less moody

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

validate_config: 1
buildifier: latest
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 e2030a4

Please sign in to comment.