Test: Travis run job in parallel

And re-add nvim to the Dockerfile
This commit is contained in:
Tinmarino 2020-07-26 16:50:23 -04:00
parent 8e2eab2e55
commit 536184c59b
2 changed files with 18 additions and 1 deletions

View File

@ -20,8 +20,23 @@ before_install:
else docker build --tag vimwiki .;
fi
env:
# Define jobs <- vim version <- hard copied from Dockerfile
# First to be launched
- VIM_VERSION=vim_7.3.429
- VIM_VERSION=nvim_0.2.2
# More
- VIM_VERSION=vim_7.4.1099
- VIM_VERSION=vim_7.4.1546
- VIM_VERSION=vim_8.0.0027
- VIM_VERSION=vim_8.1.0519
- VIM_VERSION=nvim_0.3.8
script:
# Run All tests
- pushd test
- bash run_tests.sh
- bash run_tests.sh -v -n "$VIM_VERSION"
- popd
# vim:sw=2:

View File

@ -21,3 +21,5 @@ RUN install_vim -tag v7.3.429 -name vim_7.3.429 -build \
-tag v7.4.1546 -name vim_7.4.1546 -build \
-tag v8.0.0027 -name vim_8.0.0027 -build \
-tag v8.1.0519 -name vim_8.1.0519 -build \
+ -tag neovim:v0.2.2 -name nvim_0.2.2 -build \
+ -tag neovim:v0.3.8 -name nvim_0.3.8 -build \