X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/df4229881641e6e0bba075a394009ac3d1b38bcc..8932750b6a0629a0538ce273da563844726d5640:/.travis.yml diff --git a/.travis.yml b/.travis.yml index 130c2af..152066c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,22 +4,21 @@ env: - TEST=latest before_script: | - cd .. if [ "$TEST" = "package" ]; then sudo apt-get -y update sudo apt-get -y install vim else + cd .. git clone --depth 1 https://github.com/vim/vim cd vim ./configure --with-features=huge make sudo make install export PATH="/usr/local/bin:$PATH" - cd - + cd "$TRAVIS_BUILD_DIR" fi - git clone https://github.com/godlygeek/tabular - git clone https://github.com/junegunn/vader.vim + sudo pip install virtualenv script: | - cd "$TRAVIS_BUILD_DIR" - ./test/run-tests.sh + make test + make doc