.travis.yml 554 B

12345678910111213141516171819202122232425
  1. language: ruby
  2. rvm:
  3. - 1.8.7
  4. - 2.0.0
  5. - 1.9.2 # Test with vim-nox package on ubuntu
  6. before_script: |
  7. if [ $(ruby -e 'puts RUBY_VERSION') = 1.9.2 ]; then
  8. sudo apt-get update -y
  9. sudo apt-get install -y vim-nox
  10. sudo ln -s /usr/bin/vim /usr/local/bin/vim
  11. else
  12. hg clone https://code.google.com/p/vim/
  13. cd vim
  14. ./configure --with-features=huge --enable-rubyinterp
  15. make
  16. sudo make install
  17. cd -
  18. fi
  19. git config --global user.email "you@example.com"
  20. git config --global user.name "Your Name"
  21. script: |
  22. test/run !