Unverified Commit 7d38b4a3 authored by Derek Nola's avatar Derek Nola Committed by GitHub

E2E Domain Drone Cleanup (#8579)

* Cleanup inactive vm domains * Have e2e depend on amd64 pipeline Signed-off-by: 's avatarDerek Nola <derek.nola@suse.com>
parent dface01d
......@@ -710,6 +710,9 @@ platform:
clone:
retries: 3
depends_on:
- amd64
steps:
- name: skipfiles
image: plugins/git
......@@ -752,7 +755,8 @@ steps:
- mkdir -p dist/artifacts
- cp /tmp/artifacts/* dist/artifacts/
- docker stop registry && docker rm registry
# Cleanup any VMs running, happens if a previous test panics
# Cleanup VMs running, happens if a previous test panics
# Cleanup inactive domains, happens if previous test is canceled
- |
VMS=$(virsh list --name | grep '_server-\|_agent-' || true)
if [ -n "$VMS" ]; then
......@@ -762,6 +766,13 @@ steps:
virsh undefine $vm --remove-all-storage
done
fi
VMS=$(virsh list --name --inactive | grep '_server-\|_agent-' || true)
if [ -n "$VMS" ]; then
for vm in $VMS
do
virsh undefine $vm
done
fi
- docker run -d -p 5000:5000 -e REGISTRY_PROXY_REMOTEURL=https://registry-1.docker.io --name registry registry:2
- cd tests/e2e/validatecluster
- vagrant destroy -f
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment