Updated clang toolset to version 18#59
Merged
percona-ysorokin merged 1 commit intomainfrom May 21, 2025
Merged
Conversation
ec8fb45 to
1c0709f
Compare
GitHub Actions workers now use 'ubuntu-24.04' image that have more recent toolsets as a part of standard distribution. 'apt.llvm.org' package repository is no longer used for 'clang'. 'ppa:ubuntu-toolchain-r/test' package repository is no longer used for 'gcc'. CMake presets for Boost, AWS SDK C++ and the main projects now use 'clang-18'. GitHub Actions scripts now use 'clang18_xxx' presets instead of 'clang17_xxx'. Clang Format and Clang Tidy invocations in GitHub Actions scripts changed to version 18. Fixed problem with missing comma in the 'Checks' section of the '.clang-tidy' settings file which caused enabling 'fuchsia-*' checks after switching to clang-18. Fixed new clang-18-specific Clang Tidy warnings in the source code. Verified that "-stdlib=libc++ -fsanitize=address" alloc-dealloc-mismatch issue (llvm/llvm-project#59432) still exists in Clang 18 - updated TODO item to try again in Clang 19. Before running MTR we now completely disable MySQL Server AppArmor profile in the GitHub Actions script.
1c0709f to
059b151
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GitHub Actions workers now use 'ubuntu-24.04' image that have more
recent toolsets as a part of standard distribution.
'apt.llvm.org' package repository is no longer used for 'clang'.
'ppa:ubuntu-toolchain-r/test' package repository is no longer used for
'gcc'.
CMake presets for Boost, AWS SDK C++ and the main projects now use
'clang-18'.
GitHub Actions scripts now use 'clang18_xxx' presets instead of
'clang17_xxx'.
Clang Format and Clang Tidy invocations in GitHub Actions scripts
changed to version 18.
Fixed problem with missing comma in the 'Checks' section of the
'.clang-tidy' settings file which caused enabling 'fuchsia-*' checks
after switching to clang-18.
Fixed new clang-18-specific Clang Tidy warnings in the source code.
Verified that "-stdlib=libc++ -fsanitize=address" alloc-dealloc-mismatch
issue (llvm/llvm-project#59432) still exists
in Clang 18 - updated TODO item to try again in Clang 19.
Before running MTR we now completely disable MySQL Server AppArmor
profile in the GitHub Actions script.