mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-15 13:34:06 +00:00
- Add a tests which generates all supported outputs - move the examples build tests to the new group Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
32 lines
362 B
Bash
32 lines
362 B
Bash
#!/bin/sh
|
|
# SUMMARY: Check that the examples YAML files work
|
|
# LABELS:
|
|
|
|
group_init() {
|
|
# Group initialisation code goes here
|
|
return 0
|
|
}
|
|
|
|
group_deinit() {
|
|
# Group de-initialisation code goes here
|
|
return 0
|
|
}
|
|
|
|
CMD=$1
|
|
case $CMD in
|
|
init)
|
|
group_init
|
|
res=$?
|
|
;;
|
|
deinit)
|
|
group_deinit
|
|
res=$?
|
|
;;
|
|
*)
|
|
res=1
|
|
;;
|
|
esac
|
|
|
|
exit $res
|
|
|