From 5f7e452a5fd65cf80e0cbc6df5787138ccbeb893 Mon Sep 17 00:00:00 2001 From: chengli3 Date: Mon, 28 Oct 2019 14:52:54 +0800 Subject: [PATCH] Increase vagrant VM size and fix shel indent Signed-off-by: chengli3 Change-Id: Ie500055202992957699aeccf6b5f93a611fc631f --- Vagrantfile | 4 ++-- ci/jjb/shell/verify.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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 -- 2.16.6