Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update CI
.bazelrc
to better support CI systems.
A number of small changes with comments here. The main one is that removing `--noshow_progress` will make Bazel print progress updates which tells Circle CI that test execution is still ongoing and avoids test failures due to lack of output. The other notable trade-offs being made here are: 1. [`--keep_going`](https://bazel.build/docs/user-manual#keep-going) means `bazel test` will run all tests report all failures, which could be slower and noisier than reporting just the first failure but is more complete. 2. [`--build_tests_only`](https://bazel.build/docs/user-manual#build-tests-only) means only tests and binaries will be built, so any library targets not tested could have build errors hidden. Any such important targets should either be tested or use Skylib's `build_test()`. The UI options mostly came from [this talk](https://www.youtube.com/watch?v=j332WfhNAFg).
- Loading branch information