-
Notifications
You must be signed in to change notification settings - Fork 305
/
.bazelrc
17 lines (14 loc) · 1.53 KB
/
.bazelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
build --java_language_version=17 --java_runtime_version=17
build --tool_java_language_version=17 --tool_java_runtime_version=17
# Delete test data packages, needed for bazel integration tests. Update by running the following command:
# bazel run @rules_bazel_integration_test//tools:update_deleted_packages
build --deleted_packages=aspect/testing/tests/src/com/google/idea/blaze/aspect/integration/testdata,clwb/tests/projects/simple/main,clwb/tests/projects/virtual_includes/lib/strip_absolut,clwb/tests/projects/virtual_includes/lib/strip_relative,clwb/tests/projects/virtual_includes/main,clwb/tests/projects/llvm_toolchain/main,clwb/tests/projects/external_includes/main,clwb/tests/projects/virtual_includes/lib/impl_deps
query --deleted_packages=aspect/testing/tests/src/com/google/idea/blaze/aspect/integration/testdata,clwb/tests/projects/simple/main,clwb/tests/projects/virtual_includes/lib/strip_absolut,clwb/tests/projects/virtual_includes/lib/strip_relative,clwb/tests/projects/virtual_includes/main,clwb/tests/projects/llvm_toolchain/main,clwb/tests/projects/external_includes/main,clwb/tests/projects/virtual_includes/lib/impl_deps
common --enable_bzlmod
common --enable_workspace # to load rules_scala from WORKSPACE.bzlmod
common --android_sdk=@androidsdk//:sdk
common --noincompatible_disallow_empty_glob
# Required for CLion integration tests on windows
startup --windows_enable_symlinks
build --enable_runfiles
# common --incompatible_use_plus_in_repo_names # reenable after this is fixed https://github.com/protocolbuffers/protobuf/issues/18546