Skip to content

Commit

Permalink
Build latest vim quickly from git mirror.
Browse files Browse the repository at this point in the history
* Run tests against latest vim & stock.
* Fixes #201
  • Loading branch information
starcraftman committed May 12, 2015
1 parent d12befd commit 40693fe
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
language: vim
rvm:
- 1.8.7 # Use stock
- 1.9.2 # Build latest

install: |
sudo apt-get update
sudo apt-get install vim
before_script: |
cd ..
if [ $(ruby -e 'puts RUBY_VERSION') == '1.8.7' ]; then
sudo apt-get -y update
sudo apt-get -y install vim
else
git clone --depth 1 https://github.com/vim/vim
cd vim
./configure --with-features=huge
make
sudo make install
sudo rm /usr/bin/vim
sudo ln -s /usr/local/bin/vim /usr/bin/vim
cd -
fi
git clone https://github.com/godlygeek/tabular
git clone https://github.com/junegunn/vader.vim
Expand Down

0 comments on commit 40693fe

Please sign in to comment.