neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 5da0d513b9ce1cc7e5458c14461ed4b0dad833da
parent 542c910a1d3ffd29b59278b740abd7487315cb47
Author: dundargoc <gocdundar@gmail.com>
Date:   Sat, 16 Mar 2024 14:15:23 +0100

ci: update clang version to 18

This fixes the false TSAN errors in CI.

Diffstat:
M.github/scripts/install_deps.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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