mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-04 23:12:54 +00:00
- docker: Disabled because we don't have arm64 dind images - tpm: The tss package is not compiled for arm64 - wireguard: This uses nginx:alpine which is not yet multi-arch - docker_for_mac: Is x86 specific Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
24 lines
320 B
Bash
24 lines
320 B
Bash
#!/bin/sh
|
|
# SUMMARY: Test the docker example
|
|
# LABELS: amd64
|
|
|
|
set -e
|
|
|
|
# Source libraries. Uncomment if needed/defined
|
|
#. "${RT_LIB}"
|
|
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
|
|
|
|
NAME=docker
|
|
|
|
clean_up() {
|
|
rm -f ${NAME}*
|
|
}
|
|
|
|
trap clean_up EXIT
|
|
|
|
# Test code goes here
|
|
linuxkit build "${LINUXKIT_EXAMPLES_DIR}/${NAME}.yml"
|
|
|
|
exit 0
|
|
|