-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
39 lines (31 loc) · 821 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
language: generic
git:
depth: 10
matrix:
include:
- env: VIM_VERSION=v8.0.0000
- env:
- VIM_VERSION=master
- THEMIS_PROFILE=vim-profile.txt
cache: pip
addons:
apt:
packages:
- vim
install:
- bash scripts/install-vim.sh
- export PATH=$HOME/vim/bin:$PATH
# Install https://github.com/Vimjas/covimerage
- pip install covimerage --user
before_script:
- git clone --depth 1 --branch v1.5.3 --single-branch https://github.com/thinca/vim-themis /tmp/vim-themis
script:
- uname -a
- which -a vim
- vim --cmd version --cmd quit
- vim --cmd "try | helptags doc/ | catch | cquit | endtry" --cmd quit
- /tmp/vim-themis/bin/themis --reporter dot
after_success:
- covimerage write_coverage $THEMIS_PROFILE
- coverage xml
- bash <(curl -s https://codecov.io/bash)