Files
podman/hack/ci/gha_mac_cleanup.sh
Ashley Cui 2984c2450b CI: Adjust Mac tmpdir
Makes for easier cleanup, and follows previous cirrus convention.

Signed-off-by: Ashley Cui <acui@redhat.com>
2026-06-01 13:24:35 -04:00

18 lines
331 B
Bash
Executable File

#!/usr/bin/env bash
# Best-effort cleanup of podman machine state and leaked test processes.
set +e -x
pkill -f vfkit
pkill -f krunkit
pkill -f gvproxy
pkill -f ginkgo
rm -rf "$HOME/.local/share/containers/podman/machine"
rm -rf "$HOME/.config/containers/podman"
rm -rf "${TMPDIR:-/private/tmp/ci}"
# Make we never error
true