Skip to content

Commit 2b60ea1

Browse files
committed
chore: update docs after copybara
1 parent 79edc22 commit 2b60ea1

File tree

6 files changed

+5
-70
lines changed

6 files changed

+5
-70
lines changed

docs/aspect.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,9 @@ Aspect CLI is a better frontend for running bazel
3434
* [aspect license](aspect_license.md) - Prints the license of this software.
3535
* [aspect outputs](aspect_outputs.md) - Print paths to declared output files
3636
* [aspect print](aspect_print.md) - Print syntax elements from BUILD files
37-
* [aspect pro](aspect_pro.md) - Enable Aspect CLI Pro features
3837
* [aspect query](aspect_query.md) - Query the dependency graph, ignoring configuration flags
3938
* [aspect run](aspect_run.md) - Build a single target and run it with the given arguments
4039
* [aspect shutdown](aspect_shutdown.md) - Stop the bazel server
41-
* [aspect support](aspect_support.md) - Interactive, human-escalated support for Bazel problems
4240
* [aspect test](aspect_test.md) - Build the specified targets and run all test targets among them
4341
* [aspect version](aspect_version.md) - Print the versions of Aspect CLI and Bazel
4442

docs/aspect_pro.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

docs/aspect_support.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

docs/bazelrc/convenience.bazelrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Attempt to build & test every target whose prerequisites were successfully built.
22
# Docs: https://bazel.build/docs/user-manual#keep-going
33
build --keep_going
4+
test --keep_going
45

56
# Output test errors to stderr so users don't have to `cat` or open test failure log files when test
67
# fail. This makes the log noiser in exchange for reducing the time-to-feedback on test failures for
@@ -25,4 +26,4 @@ common --enable_platform_specific_config
2526
# The dump will be written to `<output_base>/<invocation_id>.heapdump.hprof`.
2627
# You may need to configure CI to capture this artifact and upload for later use.
2728
# Docs: https://bazel.build/reference/command-line-reference#flag--heap_dump_on_oom
28-
common --heap_dump_on_oom
29+
build --heap_dump_on_oom

docs/bazelrc/correctness.bazelrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ build --noremote_upload_local_results
1111
# Developers should tag targets with `tags=["requires-network"]` to opt-out of the enforcement.
1212
# Docs: https://bazel.build/reference/command-line-reference#flag--sandbox_default_allow_network
1313
build --sandbox_default_allow_network=false
14+
test --sandbox_default_allow_network=false
1415

1516
# Warn if a test's timeout is significantly longer than the test's actual execution time.
1617
# Bazel's default for test_timeout is medium (5 min), but most tests should instead be short (1 min).

docs/bazelrc/performance.bazelrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ build --experimental_reuse_sandbox_directories
4141
# author.
4242
# Docs: https://bazel.build/reference/command-line-reference#flag--legacy_external_runfiles
4343
build --nolegacy_external_runfiles
44+
run --nolegacy_external_runfiles
45+
test --nolegacy_external_runfiles
4446

4547
# Some actions are always IO-intensive but require little compute. It's wasteful to put the output
4648
# in the remote cache, it just saturates the network and fills the cache storage causing earlier

0 commit comments

Comments
 (0)