Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: ./.github/actions/clang-tidy-upload
with:
platform: linux64
version: 19.1.4
version: 21.1.5
upload-to-s3: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}

concurrency:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/clang-tidy-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
uses: ./.github/actions/clang-tidy-upload
with:
platform: macos-i386
version: 19.1.4
version: 21.1.5
upload-to-s3: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}

build-M1:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
uses: ./.github/actions/clang-tidy-upload
with:
platform: macos-arm64
version: 19.1.4
version: 21.1.5
upload-to-s3: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion tools/clang-tidy-checks/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function clone_llvm() {
if [[ -d llvm-project ]]; then
rm -rf llvm-project
fi
git clone -b llvmorg-19.1.4 https://github.com/llvm/llvm-project.git --depth=1
git clone -b llvmorg-21.1.5 https://github.com/llvm/llvm-project.git --depth=1
success
}

Expand Down