Windows CI: No integration daemon stop

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2016-01-05 10:52:59 -08:00
parent d5685a65d7
commit a3858873fa
1 changed files with 21 additions and 15 deletions

View File

@ -1,5 +1,6 @@
#!/bin/bash
if [ ! "$(go env GOOS)" = 'windows' ]; then
trap - EXIT # reset EXIT trap applied in .integration-daemon-start
for pidFile in $(find "$DEST" -name docker.pid); do
@ -19,3 +20,8 @@ if [ -z "$DOCKER_TEST_HOST" ]; then
)
fi
fi
else
# Note this script is not actionable on Windows to Linux CI. Instead the
# DIND daemon under test is torn down by the Jenkins tear-down script
echo "INFO: Not stopping daemon on Windows CI"
fi