Skip to content

Commit 299dd48

Browse files
committed
exclude windows-only CanVendorSystec.cpp from run-clang-analysis-linux.sh
1 parent af0ce71 commit 299dd48

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ci/run-clang-analysis-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ fi
110110
log "Running clang-tidy"
111111
tidy_status=0
112112
rm -f "$TIDY_LOG"
113-
mapfile -t tidy_files < <(find src/main src/python -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.cxx' \) | sort)
113+
mapfile -t tidy_files < <(find src/main src/python -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.cxx' \) | grep -v CanVendorSystec.cpp | sort)
114114
if [[ ${#tidy_files[@]} -eq 0 ]]; then
115115
log "ERROR: no project C/C++ source files found for clang-tidy"
116116
exit 1

0 commit comments

Comments
 (0)