Boost guest memory

With 2GB of ram, certain tests were timing out and not able to complete.
This commit bumps up that base setting to 5GB to be safe.
This commit is contained in:
Brian Cain 2020-02-07 16:15:28 -08:00
parent 0f1f559c5d
commit 65864f86da
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0

View File

@ -72,7 +72,7 @@ Vagrant.configure(2) do |global_config|
config.vm.synced_folder '.', '/vagrant', disable: true
config.vm.synced_folder '../../', '/vagrant'
config.vm.provider :vmware_desktop do |vmware|
vmware.vmx["memsize"] = ENV.fetch("VAGRANT_HOST_MEMORY", "2048")
vmware.vmx["memsize"] = ENV.fetch("VAGRANT_HOST_MEMORY", "5000")
vmware.vmx['vhv.enable'] = 'TRUE'
vmware.vmx['vhv.allow'] = 'TRUE'
end