File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,20 @@ test:race --heavy
62
62
# CI uses a custom timeout for enormous targets.
63
63
test:use_ci_timeouts --test_timeout=60,300,900,900
64
64
65
- # CI should always run with `--config=ci`.
65
+ # Some automation should run with `--config=ci`. If using `--config=ci`, it is
66
+ # expected you're running the build inside the `bazelbuilder` Docker container
67
+ # (see `build/bazelbuilder`), as it will set the `test_tmpdir` to
68
+ # `/artifacts/tmp`, a path that probably does not exist on any real machine. The
69
+ # configurations in `--config ci` are otherwise generally meant to make log
70
+ # output (generally as viewed in TeamCity) more understandable. If adding new
71
+ # automation, review the settings that `--config=ci` applies and consider
72
+ # whether you need any of these settings.
73
+ #
74
+ # For builds, `--config=ci` will disable `nogo` -- GitHub Actions Essential CI
75
+ # does *not* use `--config=ci` (confusingly) so everything that does use
76
+ # `--config=ci` is post-merge, and so it would be slow duplicate work to lint
77
+ # everything again.
78
+ build:ci --config=nolintonbuild
66
79
# Set `-test.v` in Go tests.
67
80
# Ref: https://github.com/bazelbuild/rules_go/pull/2456
68
81
test:ci --test_env=GO_TEST_WRAP_TESTV=1
You can’t perform that action at this time.
0 commit comments