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: b05100a9ea
perl: 20a932cb72
autoconf+automake: e23c5fda0a
This commit is contained in:
dundargoc
2023-02-18 00:09:51 +01:00
committed by GitHub
parent f905ab0450
commit fbb27a101f
5 changed files with 8 additions and 18 deletions

View File

@ -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