mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
449f92f11e
Don't make calls to the registry if the image exists already. Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack)
42 lines
958 B
Bash
42 lines
958 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
DEST=$1
|
|
|
|
DOCKER_GRAPHDRIVER=${DOCKER_GRAPHDRIVER:-vfs}
|
|
DOCKER_EXECDRIVER=${DOCKER_EXECDRIVER:-native}
|
|
|
|
bundle_test_integration_cli() {
|
|
go_test_dir ./integration-cli
|
|
}
|
|
|
|
# subshell so that we can export PATH without breaking other things
|
|
(
|
|
export PATH="$DEST/../binary:$DEST/../dynbinary:$PATH"
|
|
|
|
if ! command -v docker &> /dev/null; then
|
|
echo >&2 'error: binary or dynbinary must be run before test-integration-cli'
|
|
false
|
|
fi
|
|
|
|
( set -x; exec \
|
|
docker --daemon --debug \
|
|
--storage-driver "$DOCKER_GRAPHDRIVER" \
|
|
--exec-driver "$DOCKER_EXECDRIVER" \
|
|
--pidfile "$DEST/docker.pid" \
|
|
&> "$DEST/docker.log"
|
|
) &
|
|
|
|
# pull the busybox image before running the tests
|
|
sleep 2
|
|
|
|
if ! docker inspect busybox &> /dev/null; then
|
|
( set -x; docker pull busybox )
|
|
fi
|
|
|
|
bundle_test_integration_cli
|
|
|
|
DOCKERD_PID=$(set -x; cat $DEST/docker.pid)
|
|
( set -x; kill $DOCKERD_PID )
|
|
wait $DOCKERD_PID || true
|
|
) 2>&1 | tee $DEST/test.log
|