Skip to content
Snippets Groups Projects
Commit 1e90d499 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

[run-clang-tidy] Run clang-tidy in parallel

parent 3afd04de
No related branches found
No related tags found
No related merge requests found
......@@ -39,4 +39,8 @@ if [[ -z "${RUN_CLANG_TIDY}" ]]; then
exit 1
fi
${RUN_CLANG_TIDY} -p "${ROOTDIR}/compile_commands_wo_subprojects/"
JOBS=$(nproc)
${RUN_CLANG_TIDY} \
-p "${ROOTDIR}/compile_commands_wo_subprojects/" \
-j "${JOBS}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment