File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -204,11 +204,13 @@ jobs:
204
204
run : |
205
205
./scripts/run_in_build_env.sh "./scripts/run_codegen_targets.sh out/sanitizers"
206
206
- name : Clang-tidy validation
207
+ # NOTE: clang-tidy crashes on CodegenDataModel_Write due to Nullable/std::optional check.
208
+ # See https://github.com/llvm/llvm-project/issues/97426
207
209
run : |
208
210
./scripts/run_in_build_env.sh \
209
211
"./scripts/run-clang-tidy-on-compile-commands.py \
210
212
--compile-database out/sanitizers/compile_commands.json \
211
- --file-exclude-regex '/(repo|zzz_generated|lwip/standalone)/|-ReadImpl|-InvokeSubscribeImpl' \
213
+ --file-exclude-regex '/(repo|zzz_generated|lwip/standalone)/|-ReadImpl|-InvokeSubscribeImpl|CodegenDataModel_Write ' \
212
214
check \
213
215
"
214
216
- name : Clean output
@@ -422,10 +424,13 @@ jobs:
422
424
run : |
423
425
./scripts/run_in_build_env.sh "./scripts/run_codegen_targets.sh out/default"
424
426
- name : Clang-tidy validation
427
+ # NOTE: clang-tidy crashes on CodegenDataModel_Write due to Nullable/std::optional check.
428
+ # See https://github.com/llvm/llvm-project/issues/97426
425
429
run : |
426
430
./scripts/run_in_build_env.sh \
427
431
"./scripts/run-clang-tidy-on-compile-commands.py \
428
432
--compile-database out/default/compile_commands.json \
433
+ --file-exclude-regex '/(repo|zzz_generated|lwip/standalone)/|CodegenDataModel_Write' \
429
434
check \
430
435
"
431
436
- name : Uploading diagnostic logs
You can’t perform that action at this time.
0 commit comments