2013-12-30 17:11:52 +01:00
|
|
|
#!/usr/bin/env python2
|
2014-01-09 16:02:09 +01:00
|
|
|
#
|
|
|
|
# You may want to alter these before running ./makebuildserver
|
2013-12-30 17:11:52 +01:00
|
|
|
|
2014-01-09 16:02:09 +01:00
|
|
|
# Name of the base box to use
|
2016-01-20 21:00:16 +01:00
|
|
|
# basebox = "jessie32"
|
2013-06-06 11:33:44 +02:00
|
|
|
|
2014-12-21 20:02:47 +01:00
|
|
|
# Location where testing32.box can be found, if you don't already have
|
2014-01-08 17:26:04 +01:00
|
|
|
# it. For security reasons, it's recommended that you make your own
|
|
|
|
# in a secure environment using trusted media (see the manual) but
|
|
|
|
# you can use this default if you like...
|
2016-01-20 21:00:16 +01:00
|
|
|
# baseboxurl = "https://f-droid.org/jessie32.box"
|
|
|
|
#
|
2015-08-26 12:23:41 +02:00
|
|
|
# or if you have a cached local copy, you can use that first:
|
|
|
|
# baseboxurl = ["file:///home/fdroid/fdroidserver/cache/jessie32.box", "https://f-droid.org/jessie32.box"]
|
2013-06-06 11:33:44 +02:00
|
|
|
|
2016-01-21 14:09:12 +01:00
|
|
|
# In the process of setting up the build server, many gigs of files
|
|
|
|
# are downloaded (Android SDK components, gradle, etc). These are
|
|
|
|
# cached so that they are not redownloaded each time. By default,
|
|
|
|
# these are stored in ~/.cache/fdroidserver
|
|
|
|
#
|
|
|
|
# cachedir = 'buildserver/cache'
|
|
|
|
|
2016-01-26 11:21:21 +01:00
|
|
|
# A big part of creating a new instance is downloading packages from Debian.
|
|
|
|
# This setups up a folder in ~/.cache/fdroidserver to cache the downloaded
|
|
|
|
# packages when rebuilding the build server from scratch. This requires
|
|
|
|
# that virtualbox-guest-utils is installed.
|
|
|
|
#
|
|
|
|
# apt_package_cache = True
|
|
|
|
|
2016-01-20 20:40:25 +01:00
|
|
|
# To specify which Debian mirror the build server VM should use, by
|
|
|
|
# default it uses http.debian.net, which auto-detects which is the
|
|
|
|
# best mirror to use.
|
|
|
|
#
|
|
|
|
# debian_mirror = 'http://ftp.uk.debian.org/debian/'
|
|
|
|
|
2015-02-01 10:00:04 +01:00
|
|
|
# The amount of RAM the build server will have
|
2016-01-20 21:00:16 +01:00
|
|
|
# memory = 3584
|
2013-06-06 11:33:44 +02:00
|
|
|
|
2015-02-01 10:00:04 +01:00
|
|
|
# The number of CPUs the build server will have
|
2016-01-20 21:00:16 +01:00
|
|
|
# cpus = 1
|
2015-02-01 10:00:04 +01:00
|
|
|
|
2016-01-20 21:00:16 +01:00
|
|
|
# Debian package proxy server - if you have one
|
|
|
|
# aptproxy = "http://192.168.0.19:8000"
|
2013-06-06 11:33:44 +02:00
|
|
|
|
2014-01-09 16:02:09 +01:00
|
|
|
# Set to True if your base box is 64 bit (e.g. testing32.box isn't)
|
2016-01-20 21:00:16 +01:00
|
|
|
# arch64 = True
|
2016-01-26 17:35:25 +01:00
|
|
|
|
|
|
|
# If this is running on an older machine or on a virtualized system,
|
|
|
|
# it can run a lot slower. If the provisioning fails with a warning
|
|
|
|
# about the timeout, extend the timeout here. (default: 600 seconds)
|
|
|
|
#
|
|
|
|
# boot_timeout = 1200
|