neovim/ci/install.sh

24 lines
565 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
set -o pipefail
if [[ "${CI_TARGET}" == lint ]]; then
exit
fi
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
brew install gettext
brew reinstall -s libtool
fi
# Use default CC to avoid compilation problems when installing Python modules.
echo "Install neovim module and coveralls for Python 2."
CC=cc pip2.7 -q install --user --upgrade neovim cpp-coveralls
echo "Install neovim module for Python 3."
2016-12-27 15:44:36 -07:00
CC=cc pip3 -q install --user --upgrade neovim
2016-07-02 21:51:43 -07:00
echo "Install neovim RubyGem."
gem install --no-document --version ">= 0.2.0" neovim