X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/8932750b6a0629a0538ce273da563844726d5640..33cf9894dec8264f6461357254c7622006459810:/.travis.yml diff --git a/.travis.yml b/.travis.yml index 152066c..338161c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,19 @@ language: vim + +os: + - linux + - osx + env: - TEST=package - TEST=latest before_script: | if [ "$TEST" = "package" ]; then - sudo apt-get -y update - sudo apt-get -y install vim + if [ "$TRAVIS_OS_NAME" = "linux" ]; then + sudo apt-get -y update + sudo apt-get -y install vim + fi else cd .. git clone --depth 1 https://github.com/vim/vim @@ -17,8 +24,11 @@ before_script: | export PATH="/usr/local/bin:$PATH" cd "$TRAVIS_BUILD_DIR" fi - sudo pip install virtualenv + if [ "$TRAVIS_OS_NAME" = "osx" ]; then + curl https://bootstrap.pypa.io/get-pip.py | sudo python + fi + sudo -H pip install virtualenv -script: | - make test - make doc +script: + - make test + - make doc