mirror of https://github.com/docker/docs.git
Windows CI: No integration daemon stop
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
d5685a65d7
commit
a3858873fa
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue