Skip to content

Commit

Permalink
#13782: Parallelize clang-tidy (#13836)
Browse files Browse the repository at this point in the history
  • Loading branch information
blozano-tt authored Oct 15, 2024
1 parent a531c83 commit ec9e236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/all-static-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
mkdir clang-tidy-result
- name: Analyze
run: |
git diff -U0 "$(git merge-base HEAD "upstream/${{ github.event.pull_request.base.ref }}")" | clang-tidy-diff-17.py -p1 -path build -export-fixes clang-tidy-result/fixes.yml
git diff -U0 "$(git merge-base HEAD "upstream/${{ github.event.pull_request.base.ref }}")" | clang-tidy-diff-17.py -p1 -path build -export-fixes clang-tidy-result/fixes.yml -j4
- name: Run clang-tidy-pr-comments action
uses: platisd/clang-tidy-pr-comments@837ad8077b1f554dab31a8a43e8bb12c89d2f144
with:
Expand All @@ -109,6 +109,6 @@ jobs:
# to avoid GitHub API timeouts for heavily loaded
# pull requests
suggestions_per_comment: 10
continue-on-error: true
continue-on-error: true
- name: Final step to signal success
run: echo "The job passes even if 3rd party action fails."

0 comments on commit ec9e236

Please sign in to comment.