aboutsummaryrefslogtreecommitdiff
path: root/ci/install.sh
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-12-27 19:27:36 +0100
committerGitHub <noreply@github.com>2018-12-27 19:27:36 +0100
commite1876c7ad1b5e30c0a9919e2c4587d11550c8507 (patch)
treef44df6f6cccfce940c56b48acec41908f76ccfb6 /ci/install.sh
parent9ac1e2db79e3a1d86ce9cf7c6ea9181126556fb9 (diff)
parenta9b1937e5afc8b418f60621749fb00875bc645dc (diff)
downloadrneovim-e1876c7ad1b5e30c0a9919e2c4587d11550c8507.tar.gz
rneovim-e1876c7ad1b5e30c0a9919e2c4587d11550c8507.tar.bz2
rneovim-e1876c7ad1b5e30c0a9919e2c4587d11550c8507.zip
Merge pull request #9398 from janlazo/mac-brew-addon
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-xci/install.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/ci/install.sh b/ci/install.sh
index 7efbaf33b5..12985098cd 100755
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -8,8 +8,6 @@ if [[ "${CI_TARGET}" == lint ]]; then
fi
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
- brew install ccache
- brew install ninja
export PATH="/usr/local/opt/ccache/libexec:$PATH"
fi
@@ -24,11 +22,11 @@ if ! [ "${TRAVIS_OS_NAME}" = osx ] ; then
# Use default CC to avoid compilation problems when installing Python modules.
echo "Install neovim module for Python 2."
CC=cc python2.7 -m pip -q install --user --upgrade neovim
-
- echo "Install neovim RubyGem."
- gem install --no-document --version ">= 0.2.0" neovim
fi
+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