From: chengli3 Date: Mon, 28 Oct 2019 06:52:54 +0000 (+0800) Subject: Increase vagrant VM size and fix shel indent X-Git-Tag: v0.4.0~73 X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=commitdiff_plain;h=5f7e452a5fd65cf80e0cbc6df5787138ccbeb893;p=icn.git Increase vagrant VM size and fix shel indent Signed-off-by: chengli3 Change-Id: Ie500055202992957699aeccf6b5f93a611fc631f --- diff --git a/Vagrantfile b/Vagrantfile index 547d308..bd4ea5c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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 diff --git a/ci/jjb/shell/verify.sh b/ci/jjb/shell/verify.sh index 4b3016f..e14e65a 100644 --- a/ci/jjb/shell/verify.sh +++ b/ci/jjb/shell/verify.sh @@ -6,7 +6,7 @@ echo "---> verify.sh" set -exuf -o pipefail function clean_vm { - vagrant destroy -f + vagrant destroy -f } trap clean_vm EXIT