File tree Expand file tree Collapse file tree 6 files changed +5
-70
lines changed Expand file tree Collapse file tree 6 files changed +5
-70
lines changed Original file line number Diff line number Diff 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
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# Attempt to build & test every target whose prerequisites were successfully built.
22# Docs: https://bazel.build/docs/user-manual#keep-going
33build --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
Original file line number Diff line number Diff 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
1313build --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).
Original file line number Diff line number Diff 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
4343build --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
You can’t perform that action at this time.
0 commit comments