2015-02-14 08:38:17 -05:00
|
|
|
language: python
|
|
|
|
|
|
|
|
python:
|
|
|
|
- 2.7
|
2015-04-18 11:15:05 -04:00
|
|
|
- 3.3
|
|
|
|
- 3.4
|
|
|
|
env:
|
|
|
|
- VIM_VERSION="74"
|
2015-07-03 15:52:50 -04:00
|
|
|
- VIM_VERSION="mercurial"
|
2015-07-14 15:58:30 -04:00
|
|
|
- VIM_VERSION="NEOVIM"
|
2015-04-18 11:15:05 -04:00
|
|
|
|
2015-07-03 15:52:50 -04:00
|
|
|
install:
|
|
|
|
# Some of these commands fail transiently. We keep retrying them until they succeed.
|
|
|
|
- until sudo add-apt-repository ppa:kalakris/tmux -y; do sleep 10; done
|
|
|
|
- until sudo add-apt-repository ppa:neovim-ppa/unstable -y; do sleep 10; done
|
|
|
|
- until sudo apt-get update -qq; do sleep 10; done
|
|
|
|
- until sudo apt-get install -qq -y --force-yes tmux xclip gdb neovim mercurial; do sleep 10; done
|
|
|
|
- ./travis_install.sh
|
2015-04-18 11:15:05 -04:00
|
|
|
|
2015-07-03 15:52:50 -04:00
|
|
|
script:
|
|
|
|
- ./travis_test.sh
|
2015-07-18 16:53:41 -04:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
webhooks:
|
|
|
|
urls:
|
|
|
|
- https://webhooks.gitter.im/e/558acac434012ba838cd
|
|
|
|
on_success: change # options: [always|never|change] default: always
|
|
|
|
on_failure: always # options: [always|never|change] default: always
|
|
|
|
on_start: false # default: false
|