1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 17:50:04 +08:00
SpaceVim/.travis.yml

44 lines
873 B
YAML
Raw Normal View History

2017-04-15 15:23:39 +08:00
language: python
dist: trusty
2017-04-15 15:23:39 +08:00
sudo: false
2016-12-26 21:20:45 +08:00
services:
- docker
git:
depth: 3
2017-08-27 06:33:24 +08:00
notifications:
slack:
on_success: never
on_failure: never
2017-10-19 08:02:00 +08:00
email:
2017-11-05 16:45:37 +08:00
on_success: never # default: change
2017-10-19 08:02:00 +08:00
on_failure: never # default: always
2016-12-26 21:20:45 +08:00
cache:
- directories:
- $HOME/cache/
2017-11-26 19:40:05 +08:00
- $HOME/deps
2016-12-26 21:20:45 +08:00
env:
2017-04-15 15:23:39 +08:00
global:
2017-11-26 19:40:05 +08:00
- DEPS=$HOME/deps
- PATH=$DEPS/bin:$HOME/vim/bin:$PATH
2016-12-26 21:20:45 +08:00
jobs:
include:
- env: LINT=vimlint-errors VIM=nvim VIM_VERSION=v0.2.0
- env: LINT=vimlint VIM=nvim VIM_VERSION=v0.2.0
- env: LINT=vint-errors VIM=nvim VIM_VERSION=v0.2.0
- env: LINT=vint VIM=nvim VIM_VERSION=v0.2.0
2017-11-24 22:16:34 +08:00
- env: LINT=vader
2017-04-14 20:48:35 +08:00
allow_failures:
- env: LINT=vimlint VIM=nvim VIM_VERSION=v0.2.0
- env: LINT=vint VIM=nvim VIM_VERSION=v0.2.0
2016-12-26 21:20:45 +08:00
install: .ci/install.sh
script: .ci/script.sh
after_success: .ci/after_success.sh
after_failure: .ci/after_failure.sh