-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.bazelrc
26 lines (19 loc) · 1.46 KB
/
.bazelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
common --enable_bzlmod
build --incompatible_default_to_explicit_init_py
build --java_language_version=17
build --java_runtime_version=17
build --tool_java_language_version=17
build --tool_java_runtime_version=17
test --test_output=all
# To update these lines, execute
# `bazel run @rules_bazel_integration_test//tools:update_deleted_packages`.
# This command must be run whenever integration test workspaces are added or removed.
build --deleted_packages=examples/pets,examples/pkl_project,examples/pkl_project/pkl,examples/simple,tests/integration_tests/example_workspaces/pkl_cache,tests/integration_tests/example_workspaces/pkl_package,tests/integration_tests/example_workspaces/pkl_package/srcs/pkg2,tests/integration_tests/example_workspaces/pkl_project,tests/integration_tests/example_workspaces/simple
query --deleted_packages=examples/pets,examples/pkl_project,examples/pkl_project/pkl,examples/simple,tests/integration_tests/example_workspaces/pkl_cache,tests/integration_tests/example_workspaces/pkl_package,tests/integration_tests/example_workspaces/pkl_package/srcs/pkg2,tests/integration_tests/example_workspaces/pkl_project,tests/integration_tests/example_workspaces/simple
#####
# Circle CI specific configuration
#####
build:circleci --curses=no --color=yes --show_timestamps
test:circleci --curses=no --color=yes --show_timestamps
# Use a consitent disk and repository cache.
build:circleci --disk_cache=/tmp/bazel_cache/disk --repository_cache=/tmp/bazel_cache/repositories