Increase vagrant VM size and fix shel indent 58/1858/1
authorchengli3 <cheng1.li@intel.com>
Mon, 28 Oct 2019 06:52:54 +0000 (14:52 +0800)
committerchengli3 <cheng1.li@intel.com>
Mon, 28 Oct 2019 06:52:54 +0000 (14:52 +0800)
Signed-off-by: chengli3 <cheng1.li@intel.com>
Change-Id: Ie500055202992957699aeccf6b5f93a611fc631f

Vagrantfile
ci/jjb/shell/verify.sh

index 547d308..bd4ea5c 100644 (file)
@@ -9,8 +9,8 @@ Vagrant.configure("2") do |config|
     libvirt.graphics_ip = '0.0.0.0'
     # add random suffix to allow running multiple jobs
     libvirt.random_hostname = 'yes'
-    libvirt.cpus = 16
-    libvirt.memory = 32768
+    libvirt.cpus = 32
+    libvirt.memory = 55296
     libvirt.machine_virtual_size = 400
   end
 end
index 4b3016f..e14e65a 100644 (file)
@@ -6,7 +6,7 @@ echo "---> verify.sh"
 set -exuf -o pipefail
 
 function clean_vm {
-  vagrant destroy -f
+    vagrant destroy -f
 }
 trap clean_vm EXIT