mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-13 20:29:35 +00:00
Makes for easier cleanup, and follows previous cirrus convention. Signed-off-by: Ashley Cui <acui@redhat.com>
17 lines
331 B
Bash
Executable file
17 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
|