X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/bd875ab511fafa4504f36852a42927ef9c0e1fd1..33cf9894dec8264f6461357254c7622006459810:/.travis.yml diff --git a/.travis.yml b/.travis.yml index 4a78b6f..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,6 +24,11 @@ before_script: | export PATH="/usr/local/bin:$PATH" cd "$TRAVIS_BUILD_DIR" fi + 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 +script: + - make test + - make doc