diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-07-07 04:23:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-07-07 04:23:47 +0300 |
commit | b73924d380171fef837963050492b957e91517c8 (patch) | |
tree | d8a00391fcf3a1e9636ee507c74e9310e6c53b22 | |
parent | c5c7ca3779e3246b7972b37f29a34d51b9526fae (diff) | |
download | plus-b73924d380171fef837963050492b957e91517c8.tar.gz plus-b73924d380171fef837963050492b957e91517c8.tar.bz2 plus-b73924d380171fef837963050492b957e91517c8.tar.xz plus-b73924d380171fef837963050492b957e91517c8.zip |
Ignore debug directory in clang-tidy.
-rwxr-xr-x | tools/ci/jobs/clang_tidy.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/ci/jobs/clang_tidy.sh b/tools/ci/jobs/clang_tidy.sh index 10765efc3..ba8606641 100755 --- a/tools/ci/jobs/clang_tidy.sh +++ b/tools/ci/jobs/clang_tidy.sh @@ -18,9 +18,10 @@ check_error $? cd .. grep "warning:" logs/clang_tidy.txt \ -| grep -v "src/test/doctest.h" \ -| grep -v "src/test/catch.hpp" \ -| grep -v "src/sdl2gfx/" \ +| grep -v "/src/test/doctest.h" \ +| grep -v "/src/test/catch.hpp" \ +| grep -v "/src/sdl2gfx/" \ +| grep -v "/src/debug/" \ >${ERRFILE} run_check_warnings |