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
34
34
* [ aspect license] ( aspect_license.md ) - Prints the license of this software.
35
35
* [ aspect outputs] ( aspect_outputs.md ) - Print paths to declared output files
36
36
* [ aspect print] ( aspect_print.md ) - Print syntax elements from BUILD files
37
- * [ aspect pro] ( aspect_pro.md ) - Enable Aspect CLI Pro features
38
37
* [ aspect query] ( aspect_query.md ) - Query the dependency graph, ignoring configuration flags
39
38
* [ aspect run] ( aspect_run.md ) - Build a single target and run it with the given arguments
40
39
* [ aspect shutdown] ( aspect_shutdown.md ) - Stop the bazel server
41
- * [ aspect support] ( aspect_support.md ) - Interactive, human-escalated support for Bazel problems
42
40
* [ aspect test] ( aspect_test.md ) - Build the specified targets and run all test targets among them
43
41
* [ aspect version] ( aspect_version.md ) - Print the versions of Aspect CLI and Bazel
44
42
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Attempt to build & test every target whose prerequisites were successfully built.
2
2
# Docs: https://bazel.build/docs/user-manual#keep-going
3
3
build --keep_going
4
+ test --keep_going
4
5
5
6
# Output test errors to stderr so users don't have to `cat` or open test failure log files when test
6
7
# 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
25
26
# The dump will be written to `<output_base>/<invocation_id>.heapdump.hprof`.
26
27
# You may need to configure CI to capture this artifact and upload for later use.
27
28
# 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
11
11
# Developers should tag targets with `tags=["requires-network"]` to opt-out of the enforcement.
12
12
# Docs: https://bazel.build/reference/command-line-reference#flag--sandbox_default_allow_network
13
13
build --sandbox_default_allow_network=false
14
+ test --sandbox_default_allow_network=false
14
15
15
16
# Warn if a test's timeout is significantly longer than the test's actual execution time.
16
17
# 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
41
41
# author.
42
42
# Docs: https://bazel.build/reference/command-line-reference#flag--legacy_external_runfiles
43
43
build --nolegacy_external_runfiles
44
+ run --nolegacy_external_runfiles
45
+ test --nolegacy_external_runfiles
44
46
45
47
# Some actions are always IO-intensive but require little compute. It's wasteful to put the output
46
48
# 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