1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00
Files
cli/components/engine/hack/make/.integration-daemon-setup
John Howard 342fdb78fb Windows CI: Setup for testing against Windows
Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: a4b77dc1af0f4abda3696c35976b72322d7f409f
Component: engine
2016-01-11 11:52:03 -08:00

14 lines
314 B
Bash

#!/bin/bash
set -e
bundle .detect-daemon-osarch
if [ $DOCKER_ENGINE_GOOS != "windows" ]; then
bundle .ensure-emptyfs
bundle .ensure-frozen-images
bundle .ensure-httpserver
bundle .ensure-syscall-test
else
# Note this is Windows to Windows CI, not Windows to Linux CI
bundle .ensure-frozen-images-windows
fi