Skip to content

Commit

Permalink
Fix path of run-clang-tidy for LLVM 13
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramirisu authored and kris-jusiak committed Jan 8, 2022
1 parent 8356ec4 commit 588f352
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Run clang-tidy
shell: bash
run: |
export PATH=/usr/local/opt/llvm/bin/:${PATH}
/usr/local/opt/llvm/share/clang/run-clang-tidy.py \
export PATH=$(brew --prefix llvm)/bin:${PATH}
$(brew --prefix llvm)/bin/run-clang-tidy \
-p build test 2>&1 | tee .run-clang-tidy.log
builddriver cat .run-clang-tidy.log

0 comments on commit 588f352

Please sign in to comment.