Test for go

This commit is contained in:
Ben Jackson 2019-07-31 22:46:09 +01:00
commit 29989ffbfb
6 changed files with 87 additions and 3 deletions

View file

@ -2,4 +2,10 @@
set -e
docker build --no-cache -t puremourning/vimspector:manual image/
if [ "$1" = "--continue" ]; then
OPTS=""
else
OPTS="--no-cache"
fi
docker build ${OPTS} -t puremourning/vimspector:manual image/

View file

@ -4,6 +4,8 @@ CONTAINER=puremourning/vimspector:manual
if [ "$@" ];then
CMD="$@"
else
CMD="bash -l"
fi
docker run --cap-add=SYS_PTRACE \