539c557680
This now only tests python2 on Vim 7.4, 8.0 and git. No Neovim (that has been broken for a long time anyways) and no longer any python3 testing. But hey, we have green tests again!
15 lines
279 B
Bash
Executable File
15 lines
279 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o verbose
|
|
|
|
mkdir -p /src && cd /src
|
|
|
|
if [[ $VIM_VERSION == "git" ]]; then
|
|
git clone https://github.com/vim/vim
|
|
else
|
|
curl http://ftp.vim.org/pub/vim/unix/vim-${VIM_VERSION}.tar.bz2 -o vim.tar.bz2
|
|
tar xjf vim.tar.bz2
|
|
mv -v vim?? vim
|
|
fi
|