aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2018-11-20 10:05:07 +0100
committerMarco Hinz <mh.codebro@gmail.com>2018-11-24 22:56:24 +0100
commit2f6364ea4b54a1ff337d0e5168454c4949e3fd8a (patch)
tree3ee696c80569b6ca0788b8878a1e35344e0433dc /ci
parent8b39e4ec793334be0e48101830f66e05691393bd (diff)
downloadrneovim-2f6364ea4b54a1ff337d0e5168454c4949e3fd8a.tar.gz
rneovim-2f6364ea4b54a1ff337d0e5168454c4949e3fd8a.tar.bz2
rneovim-2f6364ea4b54a1ff337d0e5168454c4949e3fd8a.zip
travis: switch from Ubuntu 14.04 to 16.04
Travis is phasing out its support for containers, so we remove the `sudo: false`, which will be a no-op soon. Reference: https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration Changes for Linux: - Xenial comes with libtool installed already. It only provides "libtoolize", though. For "libtool" we need to install libtool-bin.
Diffstat (limited to 'ci')
-rwxr-xr-xci/install.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/ci/install.sh b/ci/install.sh
index 4aefe22fb5..7efbaf33b5 100755
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -8,10 +8,8 @@ if [[ "${CI_TARGET}" == lint ]]; then
fi
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
- brew install ninja
- brew install gettext
- brew reinstall libtool
brew install ccache
+ brew install ninja
export PATH="/usr/local/opt/ccache/libexec:$PATH"
fi