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

language: vim
env:
- TEST=package
- TEST=latest
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: |
make test