diff options
author | dundargoc <gocdundar@gmail.com> | 2024-03-16 14:15:23 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-03-16 14:40:39 +0100 |
commit | 5da0d513b9ce1cc7e5458c14461ed4b0dad833da (patch) | |
tree | 5d70f4228896dfa44a0a165b58ca7e1d3653648f | |
parent | 542c910a1d3ffd29b59278b740abd7487315cb47 (diff) | |
download | rneovim-5da0d513b9ce1cc7e5458c14461ed4b0dad833da.tar.gz rneovim-5da0d513b9ce1cc7e5458c14461ed4b0dad833da.tar.bz2 rneovim-5da0d513b9ce1cc7e5458c14461ed4b0dad833da.zip |
ci: update clang version to 18
This fixes the false TSAN errors in CI.
-rwxr-xr-x | .github/scripts/install_deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh index ad81e053f9..2b8335f192 100755 --- a/.github/scripts/install_deps.sh +++ b/.github/scripts/install_deps.sh @@ -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=17 + CLANG_VERSION=18 if ((DEFAULT_CLANG_VERSION >= CLANG_VERSION)); then echo "Default clang version is $DEFAULT_CLANG_VERSION, which equal or larger than wanted version $CLANG_VERSION. Aborting!" exit 1 |