File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -218,15 +218,21 @@ jobs:
218
218
ALL_CHANGED_FILES : ${{ steps.changed-files.outputs.all_changed_files }}
219
219
run : |
220
220
touch out/changed_files.txt
221
+
222
+ # Loop over all changed files and filter out any that contain "third_party"
221
223
for file in ${ALL_CHANGED_FILES}; do
224
+ if [[ "$file" == *"third_party"* ]]; then
225
+ continue
226
+ fi
227
+
222
228
echo "$file changed and will be considered for tidy"
223
229
echo "$file" >>out/changed_files.txt
224
230
done
225
231
226
232
./scripts/run_in_build_env.sh \
227
233
"./scripts/run-clang-tidy-on-compile-commands.py \
228
234
--compile-database out/sanitizers/compile_commands.json \
229
- --file-exclude-regex '/(repo|zzz_generated|lwip/standalone)/|CodegenDataModel_Write|QuieterReporting' \
235
+ --file-exclude-regex '/(repo|zzz_generated|lwip/standalone)/|-ReadImpl|-InvokeSubscribeImpl| CodegenDataModel_Write|QuieterReporting' \
230
236
--file-list-file out/changed_files.txt \
231
237
check \
232
238
"
You can’t perform that action at this time.
0 commit comments