build/test: setup vroom installation on travis

This commit is contained in:
Thiago de Arruda
2014-08-08 07:15:19 -03:00
parent 353bb20ff7
commit a032fc2cca
3 changed files with 15 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
. "$CI_SCRIPTS/common.sh" . "$CI_SCRIPTS/common.sh"
install_vroom
set_environment /opt/neovim-deps set_environment /opt/neovim-deps
sudo pip install cpp-coveralls sudo pip install cpp-coveralls

View File

@@ -65,6 +65,16 @@ install_prebuilt_deps() {
fi fi
} }
install_vroom() {
(
sudo pip install neovim
git clone git://github.com/google/vroom
cd vroom
python setup.py build
sudo python setup.py install
)
}
tmpdir="$(pwd)/tmp" tmpdir="$(pwd)/tmp"
rm -rf "$tmpdir" rm -rf "$tmpdir"
mkdir -p "$tmpdir" mkdir -p "$tmpdir"

View File

@@ -1,4 +1,7 @@
. "$CI_SCRIPTS/common.sh" . "$CI_SCRIPTS/common.sh"
install_vroom
set_environment /opt/neovim-deps/32 set_environment /opt/neovim-deps/32
# Need this to keep apt-get from removing gcc when installing libncurses # Need this to keep apt-get from removing gcc when installing libncurses