Windows CI: More debugging

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: 676118670dd0be7781dfd0c12072efc62c53f1bb
Component: engine
This commit is contained in:
John Howard
2016-01-06 11:09:47 -08:00
parent b5c416d01d
commit 8f5518d38a

View File

@ -73,6 +73,16 @@ while ! docker version &> /dev/null; do
else
echo >&2 "error: daemon at $DOCKER_HOST fails to 'docker version':"
docker version >&2 || true
# Additional Windows CI debugging as this is a common error as of
# January 2016
if [ "$(go env GOOS)" = 'windows' ]; then
echo >&2 "Container log below:"
echo >&2 "---"
# Important - use the docker on the CI host, not the one built locally
# which is currently in our path.
! /c/bin/docker -H=$MAIN_DOCKER_HOST logs docker-$COMMITHASH
echo >&2 "---"
fi
fi
false
fi