Files
lightline.vim/.travis.yml
itchyny 42bec1766f fix tests on Travis
- use 7.2.051 (because vim-themis depends on the patch; the third argument of globpath())
 - take care of PATH correctly (previously the tests were not tested on the intended versions)
2016-04-14 00:22:47 +09:00

16 lines
735 B
YAML

language: generic
sudo: false
install:
- git clone --depth=1 https://github.com/thinca/vim-themis /tmp/themis
- git clone https://github.com/vim/vim /tmp/vim
- (cd /tmp/vim && ./configure --prefix=/tmp/vim-latest && make && make install)
- (cd /tmp/vim && git checkout . && git checkout v7.3 && ./configure --prefix=/tmp/vim-7.3 && make && make install)
- (cd /tmp/vim && git checkout . && git checkout v7.2.051 && ./configure --prefix=/tmp/vim-7.2.051 && make && make install)
script:
- PATH=/tmp/vim-latest/bin/:$PATH /tmp/themis/bin/themis --reporter spec
- PATH=/tmp/vim-7.3/bin/:$PATH /tmp/themis/bin/themis --reporter spec
- PATH=/tmp/vim-7.2.051/bin/:$PATH /tmp/themis/bin/themis --reporter spec