ci: downgrade to clang 19

Clang 20 is still in development at the time of this commit and is
unsuitable for CI.
This commit is contained in:
dundargoc 2024-11-09 15:20:24 +01:00 committed by dundargoc
parent dd4c828c86
commit 7d8dd8234a

View File

@ -16,7 +16,7 @@ if [[ $os == Linux ]]; then
if [[ $CC == clang ]]; then
DEFAULT_CLANG_VERSION=$(echo | clang -dM -E - | grep __clang_major | awk '{print $3}')
CLANG_VERSION=20
CLANG_VERSION=19
if ((DEFAULT_CLANG_VERSION >= CLANG_VERSION)); then
echo "Default clang version is $DEFAULT_CLANG_VERSION, which is equal or larger than wanted version $CLANG_VERSION. Aborting!"
exit 1