aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-02-27 20:15:06 +0100
committerGravatar Joseph <[email protected]>2018-02-27 19:15:06 +0000
commit032236c327382455334545b955d525d20c01c583 (patch)
tree3dcd35b294080e2eeaed9b6a5f6ec7527bac028e
parent[Travis] Build only master (diff)
reduce memory allocation from 2GB to 512MB (#28)
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index deb6d019..bb8ff03f 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -10,7 +10,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
dev.vm.host_name = "pddev"
dev.vm.network :private_network, ip: "10.1.0.2"
config.vm.provider :virtualbox do |vb|
- vb.customize ["modifyvm", :id, "--memory", "2048"]
+ vb.customize ["modifyvm", :id, "--memory", "512"]
vb.customize ["modifyvm", :id, "--ioapic", "on"]
vb.customize ["modifyvm", :id, "--cpus", "2"]
vb.linked_clone = true