From b68ecc64e69d5548bf242932d53e7ee7e64149b0 Mon Sep 17 00:00:00 2001 From: sasha Date: Thu, 20 Oct 2022 15:21:49 -0700 Subject: [PATCH] Bump disk size to 64GB in `Vagrantfile` I and others have gotten errors directly indicative and potentially indicative of running out of space during the build. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index e1b1821..f24a0a5 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,7 +8,7 @@ Vagrant.configure(2) do |config| } config.ssh.forward_agent = true - config.disksize.size = '32GB' + config.disksize.size = '64GB' config.vm.define 'zcash-build', autostart: false do |gitian| gitian.vm.box = "debian/bullseye64" gitian.vm.box_version = "11.20220328.1"