From e2030a49cb018c4aa92add586c21f85c23e9ca11 Mon Sep 17 00:00:00 2001 From: Sam Gammon Date: Mon, 11 Mar 2024 13:45:08 -0700 Subject: [PATCH] fix(bazelci): run bazelci against bazel `7.0.0` - 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 --- .bazelci/presubmit.yml | 4 ++-- MODULE.bazel | 5 ++++- tools/bazel/cache.bazelrc | 7 +++---- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index 102557f5..d31f20b9 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -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 diff --git a/MODULE.bazel b/MODULE.bazel index 8fcb5fdb..1eff88e2 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -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" diff --git a/tools/bazel/cache.bazelrc b/tools/bazel/cache.bazelrc index 033730f2..95eed402 100644 --- a/tools/bazel/cache.bazelrc +++ b/tools/bazel/cache.bazelrc @@ -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