aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-11-09 15:20:24 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-11-09 15:42:52 +0100
commit7d8dd8234a3d3c0562724337fb3ef4e77c067a1e (patch)
tree10383b3de6950f7108f516494611ab5476309e98
parentdd4c828c86d0da7823a1c415d0e9c1d493e901b7 (diff)
downloadrneovim-7d8dd8234a3d3c0562724337fb3ef4e77c067a1e.tar.gz
rneovim-7d8dd8234a3d3c0562724337fb3ef4e77c067a1e.tar.bz2
rneovim-7d8dd8234a3d3c0562724337fb3ef4e77c067a1e.zip
ci: downgrade to clang 19
Clang 20 is still in development at the time of this commit and is unsuitable for CI.
-rwxr-xr-x.github/scripts/install_deps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh
index df2bc98075..2aec8ea553 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=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