diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-02-18 00:09:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-18 00:09:51 +0100 |
| commit | fbb27a101f4fec14dec2f508be86d8688a8bd2d9 (patch) | |
| tree | 12603cd4bf1232787e3b32890692abf3cee869b9 /.github/scripts | |
| parent | f905ab04507fc5a86affeb5eaf8550c1795ac9b8 (diff) | |
| download | rneovim-fbb27a101f4fec14dec2f508be86d8688a8bd2d9.tar.gz rneovim-fbb27a101f4fec14dec2f508be86d8688a8bd2d9.tar.bz2 rneovim-fbb27a101f4fec14dec2f508be86d8688a8bd2d9.zip | |
ci: remove former dependencies that are no longer needed (#22301)
libtool, autoconf, automake and perl are no longer dependencies of
neovim and doesn't need to be installed in CI anymore. The dependencies
and the commit that removed them as dependencies are the following:
libtool: b05100a9eaad5980ea7652137bc4a1c2d15d752f
perl: 20a932cb72cf077d54e3498ef93341ffe3d4cdbb
autoconf+automake: e23c5fda0a3fe385af615372c474d4dad3b74464
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 4727b5d08d..29f4d73a7f 100755 --- a/.github/scripts/install_deps.sh +++ b/.github/scripts/install_deps.sh @@ -3,8 +3,8 @@ os=$(uname -s) if [[ $os == Linux ]]; then sudo apt-get update - sudo apt-get install -y autoconf automake build-essential cmake curl gettext libtool-bin locales-all ninja-build pkg-config unzip "$@" + sudo apt-get install -y build-essential cmake curl gettext locales-all ninja-build pkg-config unzip "$@" elif [[ $os == Darwin ]]; then brew update --quiet - brew install automake ninja "$@" + brew install ninja "$@" fi |