-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-container.do
51 lines (47 loc) · 1.54 KB
/
test-container.do
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# shellcheck shell=sh
# vi:et lbr noet sw=2 ts=2 tw=79 wrap
# Copyright 2022-2025 David Rabkin
redo-ifchange app/* lib/*
BSH="$(
CDPATH='' cd -- "$(dirname -- "$0" 2>&1)" 2>&1 && pwd -P 2>&1
)"/lib/base.sh || {
err=$?
printf >&2 %s\\n "$BSH"
exit $err
}
# shellcheck disable=SC2034 # Variable appears unused.
readonly \
BASE_APP_VERSION=0.9.20250404 \
BASE_MIN_VERSION=0.9.20231228 \
BSH
set -- "$@" --quiet
# shellcheck disable=SC1090 # File not following.
. "$BSH"
validate_cmd podman
out="$(podman machine start 2>&1)" || {
[ $? = 125 ] || die "$out"
printf >&2 'VM already running or starting.\n'
}
# If the test is run in a mode of the shell where all executed commands are
# printed to the terminal, pass the mode further.
inside "$-" x && EXE=-xx || EXE=''
inside "$(uname -m)" arm64 && ARM=true || ARM=false
# The build is executed silently, resulting in a container hash. Runs a
# container and automatically removes it after it stops.
for f in container/*/Containerfile; do
[ "$ARM" = true ] && inside "$f" archlinux && {
printf >&2 'Arch Linux does not currently support ARM architecture.\n'
continue
}
[ "$ARM" = true ] && inside "$f" fedora && {
printf >&2 'Fedora is skipped.\n'
continue
}
nme="$(printf %s "$f" | awk -F / '{print $2}' 2>&1)" || die "$nme"
printf >&2 %s...\\n "$nme"
chrono_sta run || die Unable to start timer.
hsh="$(podman build --file "$f" --quiet . 2>&1)" || die "$hsh"
podman run --rm --rmi "$hsh" "$EXE" lint test
dur="$(chrono_sto run)" || die Unable to stop timer.
printf >&2 %s\ %s.\\n "$nme" "$dur"
done