-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bazelrc
33 lines (29 loc) · 1.86 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
27
28
29
30
31
32
33
common --test_output=errors
common --enable_runfiles
startup --windows_enable_symlinks
# rules_oci: disable builtin credential handling
common --repo_env=OCI_DISABLE_GET_TOKEN=1
# allow the use of different credential helpers on Unix and Windows
common --enable_platform_specific_config
common:macos --config=unix
common:linux --config=unix
common:freebsd --config=unix
common:openbsd --config=unix
# credential helpers for Unix
common:unix --credential_helper=storage.googleapis.com=%workspace%/tools/credential-helper
common:unix --credential_helper=github.com=%workspace%/tools/credential-helper
common:unix --credential_helper=raw.githubusercontent.com=%workspace%/tools/credential-helper
common:unix --credential_helper=ghcr.io=%workspace%/tools/credential-helper
common:unix --credential_helper=s3.amazonaws.com=%workspace%/tools/credential-helper
common:unix --credential_helper=*.s3.amazonaws.com=%workspace%/tools/credential-helper
common:unix --credential_helper=*.r2.cloudflarestorage.com=%workspace%/tools/credential-helper
common:unix --credential_helper=index.docker.io=%workspace%/tools/credential-helper
# credential helpers for Windows
common:windows --credential_helper=storage.googleapis.com=%workspace%/tools/credential-helper.exe
common:windows --credential_helper=github.com=%workspace%/tools/credential-helper.exe
common:windows --credential_helper=raw.githubusercontent.com=%workspace%/tools/credential-helper.exe
common:windows --credential_helper=ghcr.io=%workspace%/tools/credential-helper.exe
common:windows --credential_helper=s3.amazonaws.com=%workspace%/tools/credential-helper.exe
common:windows --credential_helper=*.s3.amazonaws.com=%workspace%/tools/credential-helper.exe
common:windows --credential_helper=*.r2.cloudflarestorage.com=%workspace%/tools/credential-helper.exe
common:windows --credential_helper=index.docker.io=%workspace%/tools/credential-helper.exe