1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:20:04 +08:00
SpaceVim/.travis.yml

53 lines
1.4 KiB
YAML
Raw Normal View History

2017-04-15 15:23:39 +08:00
language: python
sudo: false
2016-12-26 21:20:45 +08:00
cache:
2017-04-14 20:48:35 +08:00
pip: true
2016-12-26 21:20:45 +08:00
env:
2017-04-15 15:23:39 +08:00
global:
- DEPS=$HOME/deps
- PATH=$DEPS/bin:$PATH
2017-04-14 20:48:35 +08:00
matrix:
- LINT=vimlint-errors
2016-12-26 21:20:45 +08:00
- LINT=vimlint
- LINT=vint-errors
- LINT=vint
2017-04-14 20:32:24 +08:00
- LINT=vader
2016-12-26 21:20:45 +08:00
matrix:
2017-04-14 20:48:35 +08:00
allow_failures:
- env: LINT=vimlint
2016-12-26 21:20:45 +08:00
- env: LINT=vint
install:
2017-04-14 20:48:35 +08:00
- |
if [ "${LINT#vimlint}" != "$LINT" ]; then
git clone --depth=1 https://github.com/syngan/vim-vimlint /tmp/vimlint
git clone --depth=1 https://github.com/ynkdir/vim-vimlparser /tmp/vimlparser
elif [ "${LINT#vint}" != "$LINT" ]; then
virtualenv /tmp/vint && source /tmp/vint/bin/activate && pip install vim-vint
elif [ "${LINT#vader}" != "$LINT" ]; then
git clone https://github.com/junegunn/vader.vim.git /tmp/vader
2017-04-15 15:29:49 +08:00
C_OPTS="--prefix=$DEPS --with-features=huge --disable-gui --enable-pythoninterp"
git clone --depth 1 https://github.com/vim/vim
cd vim
./configure $C_OPTS
make
make install
cd -
2017-04-14 20:48:35 +08:00
fi
2016-12-26 21:20:45 +08:00
script:
2017-04-14 20:48:35 +08:00
- |
if [ "$LINT" = "vimlint" ]; then
sh /tmp/vimlint/bin/vimlint.sh -l /tmp/vimlint -p /tmp/vimlparser .
elif [ "$LINT" = "vimlint-errors" ]; then
sh /tmp/vimlint/bin/vimlint.sh -E -l /tmp/vimlint -p /tmp/vimlparser .
elif [ "$LINT" = "vint" ]; then
vint .
elif [ "$LINT" = "vint-errors" ]; then
vint --error .
elif [ "$LINT" = "vader" ]; then
2017-04-15 12:33:08 +08:00
vim -Nu test/test.vim -c 'Vader! test/**'
2017-04-14 20:48:35 +08:00
fi