Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: a4b77dc1af0f4abda3696c35976b72322d7f409f Component: engine
14 lines
314 B
Bash
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
|