-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.bazelrc
More file actions
37 lines (32 loc) · 2.07 KB
/
.bazelrc
File metadata and controls
37 lines (32 loc) · 2.07 KB
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
34
35
36
37
common --test_output=errors
common --enable_runfiles
startup --windows_enable_symlinks
# rules_oci: disable builtin credential handling
common --repo_env=OCI_GET_TOKEN_ALLOW_FAIL=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=*.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
common:unix --credential_helper=*.pkg.dev=%workspace%/tools/credential-helper
common:unix --credential_helper=*.blob.core.windows.net=%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=*.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
common:windows --credential_helper=*.pkg.dev=%workspace%/tools/credential-helper.exe
common:windows --credential_helper=*.blob.core.windows.net=%workspace%/tools/credential-helper.exe
try-import %workspace%/.bazelrc.user