diff options
-rw-r--r-- | .ci/clang-asan.sh | 2 | ||||
-rw-r--r-- | .ci/common.sh | 10 | ||||
-rw-r--r-- | .ci/gcc-ia32.sh | 3 |
3 files changed, 15 insertions, 0 deletions
diff --git a/.ci/clang-asan.sh b/.ci/clang-asan.sh index 2c67a3c1c6..cb6cfc8f41 100644 --- a/.ci/clang-asan.sh +++ b/.ci/clang-asan.sh @@ -1,5 +1,7 @@ . "$CI_SCRIPTS/common.sh" +install_vroom + set_environment /opt/neovim-deps sudo pip install cpp-coveralls diff --git a/.ci/common.sh b/.ci/common.sh index fdd448b4ce..a31b3063e9 100644 --- a/.ci/common.sh +++ b/.ci/common.sh @@ -65,6 +65,16 @@ install_prebuilt_deps() { 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" rm -rf "$tmpdir" mkdir -p "$tmpdir" diff --git a/.ci/gcc-ia32.sh b/.ci/gcc-ia32.sh index b4fc1745ed..05b539021e 100644 --- a/.ci/gcc-ia32.sh +++ b/.ci/gcc-ia32.sh @@ -1,4 +1,7 @@ . "$CI_SCRIPTS/common.sh" + +install_vroom + set_environment /opt/neovim-deps/32 # Need this to keep apt-get from removing gcc when installing libncurses |