diff options
author | fanquake <fanquake@gmail.com> | 2023-06-29 10:22:01 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-06-29 11:59:31 +0100 |
commit | 62633b50461cb67dfb37d6485e604152e727559c (patch) | |
tree | d4e36175af3b108ad56c3354dc0f2456924c0ce8 /ci | |
parent | d4018f0b6cbff43a1b8d2d57c5df2286f4d6e9d5 (diff) |
ci: filter all subtrees from tidy output
We are currently dumping output for some. i.e:
```bash
diff --git a/src/minisketch/src/fields/clmul_1byte.cpp b/src/minisketch/src/fields/clmul_1byte.cpp
index 8826af9..7fd6f2a 100644
--- a/src/minisketch/src/fields/clmul_1byte.cpp
+++ b/src/minisketch/src/fields/clmul_1byte.cpp
@@ -4,21 +4,16 @@
* file LICENSE or http://www.opensource.org/licenses/mit-license.php.*
**********************************************************************/
-/* This file was substantially auto-generated by doc/gen_params.sage. */
-#include "../fielddefines.h"
-
+class Sketch;
#if defined(ENABLE_FIELD_BYTES_INT_1)
```
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/test/06_script_b.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ci/test/06_script_b.sh b/ci/test/06_script_b.sh index 0b10ebd44b..9993ff68d1 100755 --- a/ci/test/06_script_b.sh +++ b/ci/test/06_script_b.sh @@ -155,8 +155,7 @@ if [ "${RUN_TIDY}" = "true" ]; then # accepted in src/.bear-tidy-config # Filter out: # * qt qrc and moc generated files - # * secp256k1 - jq 'map(select(.file | test("src/qt/qrc_.*\\.cpp$|/moc_.*\\.cpp$|src/secp256k1/src/") | not))' ../compile_commands.json > tmp.json + jq 'map(select(.file | test("src/qt/qrc_.*\\.cpp$|/moc_.*\\.cpp$") | not))' ../compile_commands.json > tmp.json mv tmp.json ../compile_commands.json cd "${BASE_BUILD_DIR}/bitcoin-$HOST/" python3 "${DIR_IWYU}/include-what-you-use/iwyu_tool.py" \ |