vimtex/.travis.yml

24 lines
560 B
YAML
Raw Normal View History

2016-03-27 13:45:52 +02:00
language: vim
before_script: |
git clone https://github.com/junegunn/vader.vim.git
git clone https://github.com/vim/vim
cd vim
./configure --with-features=huge --enable-rubyinterp --enable-pythoninterp
make -j4
sudo make install
cd -
2016-03-27 13:45:52 +02:00
script: |
export PATH="/usr/local/bin:$PATH"
2016-03-27 22:12:48 +02:00
export LD_LIBRARY_PATH=~/.rvm/rubies/ruby-2.2.3/lib
vim --version
2016-03-27 13:45:52 +02:00
vim -Nu <(cat << VIMRC
2016-03-27 22:00:43 +02:00
let &rtp = '.,' . &rtp
let &rtp .= ',after'
let &rtp .= ',vader.vim'
2016-03-27 13:45:52 +02:00
filetype plugin indent on
syntax enable
VIMRC) -c 'Vader! test/vader/*' > /dev/null