forked from heavenshell/vim-pydocstring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
22 lines (19 loc) · 673 Bytes
/
.travis.yml
File metadata and controls
22 lines (19 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: vim
install:
- pwd
- git clone https://github.com/junegunn/vader.vim.git test/vader.vim
- git clone https://github.com/vim/vim /tmp/vim
- mkdir ~/bin
- cd /tmp/vim
- sudo apt-get install -y gettext libncurses5-dev libacl1-dev libgpm-dev
- ./configure --with-features=huge --enable-fail-if-missing --enable-pythoninterp --prefix=$HOME/bin/vim
- make && make install
- git clone https://github.com/junegunn/vader.vim.git
- export VIM_EXE=$HOME/bin/vim/bin/vim
- cd $HOME/build/heavenshell/vim-pydocstring
before_script:
- $HOME/bin/vim/bin/vim --version
script:
- cd test
- ./run.sh > /dev/null && echo Success || echo Fail
- cd ..