From f9444386e6d98b14ef8e714665acd70ebef37c93 Mon Sep 17 00:00:00 2001 From: Marcus Hoffmann Date: Fri, 20 Oct 2017 15:20:51 +0200 Subject: [PATCH 1/1] makebuildserver: change mem default 2 GB 1 GB is not enough for a modern android toolchain, so we change it to something actually usable. --- examples/makebuildserver.config.py | 2 +- makebuildserver | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/makebuildserver.config.py b/examples/makebuildserver.config.py index 7015cf58..3c243899 100644 --- a/examples/makebuildserver.config.py +++ b/examples/makebuildserver.config.py @@ -44,7 +44,7 @@ # # debian_mirror = 'http://ftp.uk.debian.org/debian/' -# The amount of RAM the build server will have (default: 1024) +# The amount of RAM the build server will have (default: 2048) # memory = 3584 # The number of CPUs the build server will have diff --git a/makebuildserver b/makebuildserver index e899100d..08f07d0a 100755 --- a/makebuildserver +++ b/makebuildserver @@ -67,7 +67,7 @@ config = { 'boot_timeout': 600, 'cachedir': cachedir, 'cpus': 1, - 'memory': 1024, + 'memory': 2048, 'hwvirtex': 'off', 'vm_provider': 'virtualbox', } -- 2.30.2