Skip to content

Commit

Permalink
Clang-Tidy CI: Keep Going after Errors
Browse files Browse the repository at this point in the history
Add `--keep-going` to the make command in Clang-Tidy CI. With that, the job
will keep going and show all the clang-tidy check errors instead of stopping
on the first error.
  • Loading branch information
WeiqunZhang committed Dec 9, 2023
1 parent a2eb554 commit 2f5f7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/clang_tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
cmake --build build_clang_tidy -j 2
${{github.workspace}}/.github/workflows/source/makeMakefileForClangTidy.py --input ${{github.workspace}}/ccache.log.txt
make -j2 -f clang-tidy-ccache-misses.mak \
make -j2 --keep-going -f clang-tidy-ccache-misses.mak \
CLANG_TIDY=clang-tidy \
CLANG_TIDY_ARGS="--config-file=${{github.workspace}}/.clang-tidy --warnings-as-errors=*"
Expand Down

0 comments on commit 2f5f7c8

Please sign in to comment.