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!
12 lines
227 B
Bash
Executable File
12 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o verbose
|
|
set -o pipefail
|
|
|
|
# See
|
|
# https://giorgos.sealabs.net/docker-cache-on-travis-and-docker-112.html
|
|
if [ -f ${DOCKER_CACHE_FILE} ]; then
|
|
gunzip -c ${DOCKER_CACHE_FILE} | docker load;
|
|
fi
|