mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-02 22:30:04 +08:00
Add travis support
This commit is contained in:
parent
c0ad3bf837
commit
7d539b5219
36
.travis.yml
Normal file
36
.travis.yml
Normal file
@ -0,0 +1,36 @@
|
||||
language: python
|
||||
|
||||
cache:
|
||||
pip: true
|
||||
|
||||
env:
|
||||
matrix:
|
||||
- LINT=vimlint-errors
|
||||
- LINT=vimlint
|
||||
- LINT=vint-errors
|
||||
- LINT=vint
|
||||
|
||||
matrix:
|
||||
allow_failures:
|
||||
- env: LINT=vimlint
|
||||
- env: LINT=vint
|
||||
|
||||
install:
|
||||
- |
|
||||
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
|
||||
fi
|
||||
script:
|
||||
- |
|
||||
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 .
|
||||
fi
|
@ -1,2 +1,4 @@
|
||||
# SpaceVim
|
||||
Like spacemacs, but for vim.
|
||||
[![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=master)](https://travis-ci.org/SpaceVim/SpaceVim) |
|
||||
[![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=dev)](https://travis-ci.org/SpaceVim/SpaceVim)
|
||||
|
Loading…
Reference in New Issue
Block a user