From 6e39009e150e4065b903717f51d7f25782680552 Mon Sep 17 00:00:00 2001
From: MJB <mjb@it-innovation.soton.ac.uk>
Date: Wed, 28 Mar 2018 09:31:58 +0100
Subject: [PATCH] deleting VMs using vboxmanage rather than vagrant destroy

---
 .gitlab-ci.yml                |  8 ++------
 scripts/build/deleteallvms.sh | 11 +++++++++++
 2 files changed, 13 insertions(+), 6 deletions(-)
 create mode 100644 scripts/build/deleteallvms.sh

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index eba6d22..d267f7e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,14 +24,10 @@ test:all:
     - vagrant --fixture=monitoring -- ssh test-runner -- -tt "pytest -s --pyargs clmctest.monitoring"  
     - vagrant --fixture=inputs -- up
     - vagrant --fixture=inputs -- ssh test-runner -- -tt "pytest -s --pyargs clmctest.inputs"        
-  when: on_success      
+  when: manual      
   
 clean:
   stage: clean
   script: 
-    - echo "Clean VMs"
-  after_script:
-    - vagrant --fixture=inputs -- destroy --force     
-    - vagrant --fixture=monitoring -- destroy --force     
-    - vagrant --fixture=scripts -- destroy --force         
+    - scripts/build/deleteallvms.sh"      
   when: always       
\ No newline at end of file
diff --git a/scripts/build/deleteallvms.sh b/scripts/build/deleteallvms.sh
new file mode 100644
index 0000000..e560731
--- /dev/null
+++ b/scripts/build/deleteallvms.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+vboxmanage list vms | awk ' {print $1} ' | awk -F',' '{gsub(/"/, "", $1); print $1}' > runningvms
+
+while read vm_id; do
+  echo $vm_id
+  vboxmanage controlvm $vm_id poweroff
+  vboxmanage unregistervm $vm_id --delete
+done <runningvms
+
+rm runningvms
\ No newline at end of file
-- 
GitLab