mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 02:45:39 +00:00
* ci/before_install.sh: do not (try to) upgrade pip It is not necessary usually (for our use case(s)), and rather good to have this (implicitly) pinned. * Simplify/improve Python info output * Use pyenv-global to activate/use Python 2.7/7.7 * simplify pip-install of neovim, also for osx
26 lines
608 B
Bash
Executable File
26 lines
608 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
if [[ "${CI_TARGET}" == lint ]]; then
|
|
exit
|
|
fi
|
|
|
|
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
|
|
export PATH="/usr/local/opt/ccache/libexec:$PATH"
|
|
fi
|
|
|
|
# Use default CC to avoid compilation problems when installing Python modules.
|
|
echo "Install neovim module for Python 3."
|
|
CC=cc pip3 -q install --user --upgrade neovim
|
|
echo "Install neovim module for Python 2."
|
|
CC=cc pip2 -q install --user --upgrade neovim
|
|
|
|
echo "Install neovim RubyGem."
|
|
gem install --no-document --version ">= 0.8.0" neovim
|
|
|
|
echo "Install neovim npm package"
|
|
npm install -g neovim
|
|
npm link neovim
|