Markdown Vim Mode
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
405 B

  1. language: vim
  2. env:
  3. - TEST=package
  4. - TEST=latest
  5. before_script: |
  6. if [ "$TEST" = "package" ]; then
  7. sudo apt-get -y update
  8. sudo apt-get -y install vim
  9. else
  10. cd ..
  11. git clone --depth 1 https://github.com/vim/vim
  12. cd vim
  13. ./configure --with-features=huge
  14. make
  15. sudo make install
  16. export PATH="/usr/local/bin:$PATH"
  17. cd "$TRAVIS_BUILD_DIR"
  18. fi
  19. script: |
  20. make test