Skip to content

Commit

Permalink
E2E Domain Drone Cleanup (#8579)
Browse files Browse the repository at this point in the history
* Cleanup inactive vm domains
* Have e2e depend on amd64 pipeline

Signed-off-by: Derek Nola <derek.nola@suse.com>
  • Loading branch information
dereknola committed Oct 10, 2023
1 parent dface01 commit 7d38b4a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,9 @@ platform:
clone:
retries: 3

depends_on:
- amd64

steps:
- name: skipfiles
image: plugins/git
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 7d38b4a

Please sign in to comment.