diff options
| author | dundargoc <gocdundar@gmail.com> | 2024-10-02 15:16:13 +0200 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-10-05 17:35:41 +0200 |
| commit | 0c9b3ef34dea3b957c2501601f44f1154236abf8 (patch) | |
| tree | bc8b5ea2e73fd02b9f1b288147aadc82f4aa4213 /.github/scripts | |
| parent | ff7832ad3fce55671ac4032716164ada0350b0ec (diff) | |
| download | rneovim-0c9b3ef34dea3b957c2501601f44f1154236abf8.tar.gz rneovim-0c9b3ef34dea3b957c2501601f44f1154236abf8.tar.bz2 rneovim-0c9b3ef34dea3b957c2501601f44f1154236abf8.zip | |
ci: bump ubuntu runner version to ubuntu-24.04
Also bump clang to version 20.
Diffstat (limited to '.github/scripts')
| -rwxr-xr-x | .github/scripts/install_deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh index b90a84fc24..b7d723e690 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=18 + CLANG_VERSION=20 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 @@ -33,7 +33,7 @@ if [[ $os == Linux ]]; then sudo apt-get install -y locales-all cpanminus attr libattr1-dev gdb inotify-tools # Use default CC to avoid compilation problems when installing Python modules - CC=cc python3 -m pip -q install --user --upgrade pynvim + CC=cc python3 -m pip -q install --user --upgrade --break-system-packages pynvim fi elif [[ $os == Darwin ]]; then brew update --quiet |