Skip to content

Commit

Permalink
Merge pull request preservim#211 from starcraftman/latest_vim
Browse files Browse the repository at this point in the history
Build latest vim quickly from git mirror.
  • Loading branch information
cirosantilli committed May 15, 2015
2 parents d12befd + df42298 commit e43bca7
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .travis.yml
@@ -1,9 +1,22 @@
language: vim
env:
- TEST=package
- TEST=latest

install: |
sudo apt-get update
sudo apt-get install vim
before_script: |
cd ..
if [ "$TEST" = "package" ]; 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
export PATH="/usr/local/bin:$PATH"
cd -
fi
git clone https://github.com/godlygeek/tabular
git clone https://github.com/junegunn/vader.vim
Expand Down

0 comments on commit e43bca7

Please sign in to comment.