1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-02 07:20:37 +02:00

makebuildserver: change mem default 2 GB

1 GB is not enough for a modern android toolchain, so we change it to
something actually usable.
This commit is contained in:
Marcus Hoffmann 2017-10-20 15:20:51 +02:00
parent 3407c67041
commit f9444386e6
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -67,7 +67,7 @@ config = {
'boot_timeout': 600,
'cachedir': cachedir,
'cpus': 1,
'memory': 1024,
'memory': 2048,
'hwvirtex': 'off',
'vm_provider': 'virtualbox',
}