X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/4b8f631148d5ed7830cc34a7aa91ef71ea253f84..611c994e1b00ef9dac617fe96cd644f0297e2a19:/.travis.yml diff --git a/.travis.yml b/.travis.yml index 12bf12e..4a78b6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,22 @@ language: vim +env: + - TEST=package + - TEST=latest -install: | - sudo apt-get update - sudo apt-get install vim - cd .. - git clone https://github.com/godlygeek/tabular - git clone https://github.com/junegunn/vader.vim +before_script: | + 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 "$TRAVIS_BUILD_DIR" + fi script: | - cd "$TRAVIS_BUILD_DIR" - ./test/run-tests.sh + make test