File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Expand file tree Collapse file tree 3 files changed +1
-5
lines changed 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
5
4
6
5
# Output test errors to stderr so users don't have to `cat` or open test failure log files when test
7
6
# fail. This makes the log noiser in exchange for reducing the time-to-feedback on test failures for
@@ -26,4 +25,4 @@ common --enable_platform_specific_config
26
25
# The dump will be written to `<output_base>/<invocation_id>.heapdump.hprof`.
27
26
# You may need to configure CI to capture this artifact and upload for later use.
28
27
# Docs: https://bazel.build/reference/command-line-reference#flag--heap_dump_on_oom
29
- build --heap_dump_on_oom
28
+ common --heap_dump_on_oom
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ 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
15
14
16
15
# Warn if a test's timeout is significantly longer than the test's actual execution time.
17
16
# 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,8 +41,6 @@ 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
46
44
47
45
# Some actions are always IO-intensive but require little compute. It's wasteful to put the output
48
46
# 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