Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions hack/test-templates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ CONTAINER_ENGINE="nerdctl"
declare -A CHECKS=(
["proxy-settings"]="1"
["systemd"]="1"
["systemd-strict"]="1"
["mount-home"]="1"
["container-engine"]="1"
["restart"]="1"
Expand Down Expand Up @@ -80,12 +79,6 @@ case "$NAME" in
ERROR "File \"$FILE\" is not testable with this script"
exit 1
;;
"fedora")
WARNING "Relaxing systemd tests for fedora (For avoiding CI failure)"
# CI failure:
# ● run-r2b459797f5b04262bfa79984077a65c7.service loaded failed failed /usr/bin/systemctl start man-db-cache-update
CHECKS["systemd-strict"]=
;;
"test-misc")
CHECKS["disk"]=1
CHECKS["snapshot-online"]="1"
Expand Down Expand Up @@ -319,11 +312,7 @@ if [[ -n ${CHECKS["systemd"]} ]]; then
if ! limactl shell "$NAME" systemctl is-system-running --wait; then
ERROR '"systemctl is-system-running" failed'
diagnose "$NAME"
if [[ -z ${CHECKS["systemd-strict"]} ]]; then
INFO 'Ignoring "systemctl is-system-running" failure'
else
exit 1
fi
exit 1
fi
set +x
fi
Expand Down
Loading