@@ -309,29 +309,53 @@ def clang_tidy_action(ctx, compilation_context, executable, srcs, stdout, exit_c
309
309
310
310
outputs = [stdout ]
311
311
env = _get_env (ctx , srcs )
312
- env ["CLANG_TIDY__STDOUT_STDERR_OUTPUT_FILE" ] = stdout .path
313
312
314
313
if exit_code :
315
- env ["CLANG_TIDY__EXIT_CODE_OUTPUT_FILE" ] = exit_code .path
316
314
outputs .append (exit_code )
317
315
318
316
# pass compiler args via a params file. The command line may already be long due to
319
317
# sources, which can't go the params file, so materialize it always.
320
- clang_tidy_args = _get_args (ctx , compilation_context , srcs )
321
- compiler_args = ctx .actions .args ()
322
- compiler_args .add_all (_get_compiler_args (ctx , compilation_context , srcs ))
323
- compiler_args .use_param_file ("--config %s" , use_always = True )
324
318
319
+ intermediate_outputs_stdout = []
320
+ intermediate_outputs_exit_code = []
321
+ # create an action for each file
322
+ for src in srcs :
323
+ out_intermediate_stdout = ctx .actions .declare_file (stdout .short_path + ".{}.stdout" .format (len (intermediate_outputs_stdout )))
324
+ env ["CLANG_TIDY__STDOUT_STDERR_OUTPUT_FILE" ] = out_intermediate_stdout .path
325
+ if exit_code :
326
+ out_intermediate_exit_code = ctx .actions .declare_file (exit_code .short_path + ".{}.exit_code" .format (len (intermediate_outputs_exit_code )))
327
+ env ["CLANG_TIDY__EXIT_CODE_OUTPUT_FILE" ] = out_intermediate_exit_code .path
328
+ clang_tidy_args = _get_args (ctx , compilation_context , [src ])
329
+ compiler_args = ctx .actions .args ()
330
+ compiler_args .add_all (_get_compiler_args (ctx , compilation_context , [src ]))
331
+ compiler_args .use_param_file ("--config %s" , use_always = True )
332
+
333
+ ctx .actions .run_shell (
334
+ inputs = _gather_inputs (ctx , compilation_context , [src ]),
335
+ outputs = [out_intermediate_stdout ,]+ ([out_intermediate_exit_code ] if exit_code else []),
336
+ tools = [executable ._clang_tidy_wrapper , executable ._clang_tidy , find_cpp_toolchain (ctx ).all_files ],
337
+ command = executable ._clang_tidy_wrapper .path + " $@" ,
338
+ arguments = [executable ._clang_tidy .path ] + clang_tidy_args + ["--" , compiler_args ],
339
+ env = env ,
340
+ mnemonic = _MNEMONIC ,
341
+ progress_message = "Linting %{label} with clang-tidy" ,
342
+ )
343
+ intermediate_outputs_stdout .append (out_intermediate_stdout )
344
+ if exit_code :
345
+ intermediate_outputs_exit_code .append (out_intermediate_exit_code )
346
+
347
+ # emit
325
348
ctx .actions .run_shell (
326
- inputs = _gather_inputs (ctx , compilation_context , srcs ),
327
- outputs = outputs ,
328
- tools = [executable ._clang_tidy_wrapper , executable ._clang_tidy , find_cpp_toolchain (ctx ).all_files ],
329
- command = executable ._clang_tidy_wrapper .path + " $@" ,
330
- arguments = [executable ._clang_tidy .path ] + clang_tidy_args + ["--" , compiler_args ],
331
- env = env ,
332
- mnemonic = _MNEMONIC ,
333
- progress_message = "Linting %{label} with clang-tidy" ,
349
+ inputs = intermediate_outputs_stdout ,
350
+ outputs = [stdout ],
351
+ command = "cat {} > {}" .format (" " .join ([f .path for f in intermediate_outputs_stdout ]),stdout .path )
334
352
)
353
+ if exit_code :
354
+ ctx .actions .run_shell (
355
+ inputs = intermediate_outputs_exit_code ,
356
+ outputs = [exit_code ],
357
+ command = "cat {} | sort -nr | head -n 1 > {}" .format (" " .join ([f .path for f in intermediate_outputs_exit_code ]),exit_code .path )
358
+ )
335
359
336
360
def clang_tidy_fix (ctx , compilation_context , executable , srcs , patch , stdout , exit_code ):
337
361
"""Create a Bazel Action that spawns clang-tidy with --fix.
0 commit comments