From d0dfa53a05117517e8068118ca0f8a2c4e765f12 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Mon, 27 Jan 2025 09:50:21 +1100 Subject: [PATCH] Vagrant: increase memory from 2GB to 16GB ... needed for build to complete --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index a8a6492959..2b5ecee201 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -30,7 +30,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end focal.vm.provision "shell", path: "./scripts/initvagrant.sh" focal.vm.provider "virtualbox" do |vb| - vb.customize ["modifyvm", :id, "--memory", "2048"] + vb.customize ["modifyvm", :id, "--memory", "16384"] end end end