> * Just as a ballpark estimate, developers on the team spend several minutes > of build time per day running clang-format on code. This doesn't strictly > need to be done until it's time to push.
Can you share you measurement scheme. When I measure it at worst its seconds. No changes: ``` $ time make apache-geode-static-clangformat -j12 [100%] Built target apache-geode-static-clangformat real 0m0.246s user 0m0.174s sys 0m0.054s ``` All changes: ``` $ time make apache-geode-static-clangformat -j12 [ 0%] Clang-Format /Users/jbarrett/Develop/geode-native/cppcache/src/AuthenticatedView.cpp ... [ 96%] Clang-Format /Users/jbarrett/Develop/geode-native/cppcache/include/geode/util/LogLevel.hpp [100%] Built target apache-geode-static-clangformat real 0m3.980s user 0m22.907s sys 0m12.501s ``` [ Full content available at: https://github.com/apache/geode-native/pull/558 ] This message was relayed via gitbox.apache.org for [email protected]
