mirror of
https://github.com/neovim/neovim.git
synced 2026-02-01 01:51:30 +10:00
This will fix the failing release job. Ubuntu 18.04 is incompatible with checkout action version 4, which requires glibc 2.28+. This will bump the minimum glibc version required to use the release versions to 2.31. People requring the older releases can find them at https://github.com/neovim/neovim-releases.
26 lines
486 B
Bash
Executable File
26 lines
486 B
Bash
Executable File
#!/bin/bash
|
|
|
|
while (($# > 0)); do
|
|
case $1 in
|
|
--test) # install test dependencies
|
|
TEST=1
|
|
shift
|
|
;;
|
|
esac
|
|
done
|
|
|
|
os=$(uname -s)
|
|
if [[ $os == Linux ]]; then
|
|
sudo apt-get update
|
|
sudo apt-get install -y build-essential cmake curl gettext ninja-build unzip
|
|
if [[ -n $TEST ]]; then
|
|
sudo apt-get install -y locales-all cpanminus
|
|
fi
|
|
elif [[ $os == Darwin ]]; then
|
|
brew update --quiet
|
|
brew install ninja
|
|
if [[ -n $TEST ]]; then
|
|
brew install cpanminus
|
|
fi
|
|
fi
|