aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rwxr-xr-xci/before_install.sh4
-rwxr-xr-xci/install.sh8
2 files changed, 3 insertions, 9 deletions
diff --git a/ci/before_install.sh b/ci/before_install.sh
index 86dd78af48..d8cf38d314 100755
--- a/ci/before_install.sh
+++ b/ci/before_install.sh
@@ -7,10 +7,6 @@ if [[ "${CI_TARGET}" == lint ]]; then
exit
fi
-if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
- >/dev/null brew update
-fi
-
echo 'python info:'
(
2>&1 python --version || true
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