aboutsummaryrefslogtreecommitdiff
path: root/.ci/install.sh
diff options
context:
space:
mode:
Diffstat (limited to '.ci/install.sh')
-rwxr-xr-x.ci/install.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/.ci/install.sh b/.ci/install.sh
deleted file mode 100755
index cb2362a70e..0000000000
--- a/.ci/install.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-set -o pipefail
-
-if [[ -n "${CI_TARGET}" ]]; then
- exit
-fi
-
-if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
- brew install gettext
-elif [[ "${BUILD_MINGW}" == ON ]]; then
- # TODO: When Travis gets a recent version of Mingw-w64 use packages:
- # binutils-mingw-w64-i686 gcc-mingw-w64-i686 g++-mingw-w64-i686 mingw-w64-dev mingw-w64-tools
-
- echo "Downloading MinGW..."
- curl -sSL "https://github.com/neovim/deps/raw/master/opt/i686-w64-mingw32-gcc-4.8.0-linux64_rubenvb.tar.xz" \
- | tar xJf - -C "${HOME}/.local"
-
-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."
-if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
- CC=cc pip3 -q install --user --upgrade neovim
-else
- CC=cc pip3.3 -q install --user --upgrade neovim
-fi