-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bazelrc
22 lines (19 loc) · 989 Bytes
/
.bazelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
################################################################################
# General flags
#-------------------------------------------------------------------------------
#build --symlink_prefix=.bazel/
#build --host_javabase=@nixpkgs-jdk11//:jdk
#build --javabase=@nixpkgs-jdk11//:jdk
################################################################################
# rules_scala flags
#-------------------------------------------------------------------------------
build --strategy=Scalac=worker
build --worker_sandboxing
################################################################################
# Bazel caching flags
#-------------------------------------------------------------------------------
# Enable local persistent disk cache
build --disk_cache=~/.bazel/cache
# Prevent concurrent modification from poisoning the build cache
build --experimental_guard_against_concurrent_changes
################################################################################