Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(bazelci): run bazelci against bazel 7.0.0 #325

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading