wasphin commented on code in PR #3486:
URL: https://github.com/apache/brpc/pull/3486#discussion_r3850764542
##########
.github/workflows/ci-linux.yml:
##########
@@ -192,10 +233,17 @@ jobs:
protobuf-install-dir: /protobuf-3.21.12
config-brpc-options: --cc=clang --cxx=clang++ --werror
+ - name: Show ccache statistics
+ if: always()
+ run: ccache --show-stats
+
clang-unittest-with-bazel:
Review Comment:
Bazel caches test results as well, but I think reusing them is acceptable
when the test and all of its relevant inputs are unchanged. Bazel will
invalidate the cached result when those inputs change.
If we want CI to always execute tests, we can disable test-result caching
separately, e.g. with --cache_test_results=no, while still keeping the build
cache.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]