-
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
155e3f2
commit ffc5a7b
Showing
23 changed files
with
367 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
user.bazelrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
# Bazel options included on CI using the --bazelrc Bazel flag | ||
# Directories caches by GitHub actions | ||
common:local --disk_cache=~/.cache/bazel-disk-cache | ||
common --repository_cache=~/.cache/bazel-repository-cache | ||
|
||
# CI specific caching options | ||
build --repository_cache=~/.cache/bazel-repo | ||
test --test_env=XDG_CACHE_HOME | ||
# Debug where options came from | ||
common --announce_rc | ||
|
||
# When no remote cache, use a local one | ||
build:local --disk_cache=~/.cache/bazel | ||
# Allows tests to run bazelisk-in-bazel, since this is the cache folder used | ||
common --test_env=XDG_CACHE_HOME | ||
|
||
# Remote build execution | ||
build:rbe --extra_execution_platforms=@aspect_bazel_lib//platforms:x86_64_linux_remote | ||
build:rbe --genrule_strategy=remote | ||
build:rbe --host_platform=@aspect_bazel_lib//platforms:x86_64_linux_remote | ||
build:rbe --jobs=32 | ||
|
||
# BuildBuddy remote exec | ||
build:rbe --bes_results_url=https://app.buildbuddy.io/invocation/ | ||
build:rbe --bes_backend=grpcs://remote.buildbuddy.io | ||
build:rbe --remote_timeout=3600 | ||
build:rbe --remote_executor=grpcs://remote.buildbuddy.io | ||
|
||
test --test_output=errors |
Oops, something went wrong.