mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-31 14:41:10 +00:00
23 lines
325 B
Bash
23 lines
325 B
Bash
#!/bin/sh
|
|
# SUMMARY: Test the wireguard example
|
|
# LABELS: amd64
|
|
|
|
set -e
|
|
|
|
# Source libraries. Uncomment if needed/defined
|
|
#. "${RT_LIB}"
|
|
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
|
|
|
|
NAME=wireguard
|
|
|
|
clean_up() {
|
|
rm -f ${NAME}*
|
|
}
|
|
|
|
trap clean_up EXIT
|
|
|
|
# Test code goes here
|
|
linuxkit build "${LINUXKIT_EXAMPLES_DIR}/${NAME}.yml"
|
|
|
|
exit 0
|