diff options
author | fanquake <fanquake@gmail.com> | 2022-07-19 15:51:47 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-08-03 17:52:24 +0100 |
commit | 1c976c691cc4b20f43071aabf36c7afed1571057 (patch) | |
tree | d81d4a689e0e8966879c7123eb1e6a154a7c26df /ci/test | |
parent | 7de23cceb8ac13fcc709453ef0fa14fb93c460b0 (diff) |
tidy: Integrate bicoin-tidy clang-tidy plugin
Enable `bitcoin-unterminated-logprintf`.
Co-authored-by: Cory Fields <cory-nospam-@coryfields.com>
Diffstat (limited to 'ci/test')
-rwxr-xr-x | ci/test/06_script_b.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ci/test/06_script_b.sh b/ci/test/06_script_b.sh index d769b49c08..02358db789 100755 --- a/ci/test/06_script_b.sh +++ b/ci/test/06_script_b.sh @@ -148,9 +148,13 @@ if [ "$RUN_FUNCTIONAL_TESTS" = "true" ]; then fi if [ "${RUN_TIDY}" = "true" ]; then + cmake -B /tidy-build -DLLVM_DIR=/usr/lib/llvm-16/cmake -DCMAKE_BUILD_TYPE=Release -S "${BASE_ROOT_DIR}"/contrib/devtools/bitcoin-tidy + cmake --build /tidy-build "$MAKEJOBS" + cmake --build /tidy-build --target bitcoin-tidy-tests "$MAKEJOBS" + set -eo pipefail cd "${BASE_BUILD_DIR}/bitcoin-$HOST/src/" - ( run-clang-tidy-16 -quiet "${MAKEJOBS}" ) | grep -C5 "error" + ( run-clang-tidy-16 -quiet -load="/tidy-build/libbitcoin-tidy.so" "${MAKEJOBS}" ) | grep -C5 "error" # Filter out files by regex here, because regex may not be # accepted in src/.bear-tidy-config # Filter out: |