From 66fccfdbcf10626c4b7676f7e44b8ba78305cb6b Mon Sep 17 00:00:00 2001 From: Victor Grousset Date: Thu, 31 Dec 2015 00:04:02 +0100 Subject: [PATCH] Vagrant: Virtualbox: increase RAM and put 2 CPUs Because some tests were crashing by lack to RAM. And a second core speedups the provitioning and the tests. --- Vagrantfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 24d62bb7a..0cd5ac72a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,9 +3,11 @@ Vagrant.configure("2") do |config| # use official ubuntu image for virtualbox - config.vm.provider "virtualbox" do |_, override| + config.vm.provider "virtualbox" do |vb, override| override.vm.box = "ubuntu/trusty64" override.vm.synced_folder ".", "/srv/openstreetmap-website" + vb.customize ["modifyvm", :id, "--memory", "1024"] + vb.customize ["modifyvm", :id, "--cpus", "2"] end # use third party image and NFS sharing for lxc -- 2.43.2