forked from vgvassilev/clad
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix clang tidy run failure in PR checks
- Loading branch information
1 parent
8039520
commit 4f6edec
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,9 +18,9 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Install LLVM and Clang | ||
uses: KyleMayes/[email protected].2 | ||
uses: KyleMayes/[email protected].3 | ||
with: | ||
version: "16.0.0" | ||
version: "17.0.6" | ||
|
||
- name: install lit | ||
run: pip install lit | ||
|
@@ -37,7 +37,9 @@ jobs: | |
apt_packages: cmake,libxml2,libxml2-dev,libtinfo-dev,zlib1g-dev,libzstd-dev | ||
exclude: "test/*,unittests/*,benchmark/*,demos/*" | ||
split_workflow: true | ||
config_file: .clang-tidy | ||
cmake_command: > | ||
CC=$GITHUB_WORKSPACE/llvm/bin/clang CXX=$GITHUB_WORKSPACE/llvm/bin/clang++ | ||
cmake . -B build -DLLVM_DIR="$GITHUB_WORKSPACE/llvm" | ||
-DClang_DIR="$GITHUB_WORKSPACE/llvm" | ||
-DCMAKE_BUILD_TYPE="Release" | ||
|