X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/e32141a1249f2285b963e356965f210301a4c076..691d961a643064ee1feddba8371ff12e44678f5a:/.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