chiark / gitweb /
Switch all headers to python3
[fdroidserver.git] / examples / makebuildserver.config.py
1 #!/usr/bin/env python3
2 #
3 # You may want to alter these before running ./makebuildserver
4
5 # Name of the base box to use
6 # basebox = "jessie32"
7
8 # Location where testing32.box can be found, if you don't already have
9 # it. For security reasons, it's recommended that you make your own
10 # in a secure environment using trusted media (see the manual) but
11 # you can use this default if you like...
12 # baseboxurl = "https://f-droid.org/jessie32.box"
13 #
14 # or if you have a cached local copy, you can use that first:
15 # baseboxurl = ["file:///home/fdroid/fdroidserver/cache/jessie32.box", "https://f-droid.org/jessie32.box"]
16
17 # In the process of setting up the build server, many gigs of files
18 # are downloaded (Android SDK components, gradle, etc).  These are
19 # cached so that they are not redownloaded each time. By default,
20 # these are stored in ~/.cache/fdroidserver
21 #
22 # cachedir = 'buildserver/cache'
23
24 # A big part of creating a new instance is downloading packages from Debian.
25 # This setups up a folder in ~/.cache/fdroidserver to cache the downloaded
26 # packages when rebuilding the build server from scratch.  This requires
27 # that virtualbox-guest-utils is installed.
28 #
29 # apt_package_cache = True
30
31 # To specify which Debian mirror the build server VM should use, by
32 # default it uses http.debian.net, which auto-detects which is the
33 # best mirror to use.
34 #
35 # debian_mirror = 'http://ftp.uk.debian.org/debian/'
36
37 # The amount of RAM the build server will have (default: 1024)
38 # memory = 3584
39
40 # The number of CPUs the build server will have
41 # cpus = 1
42
43 # Debian package proxy server - if you have one
44 # aptproxy = "http://192.168.0.19:8000"
45
46 # Set to True if your base box is 64 bit (e.g. testing32.box isn't)
47 # arch64 = True
48
49 # If this is running on an older machine or on a virtualized system,
50 # it can run a lot slower. If the provisioning fails with a warning
51 # about the timeout, extend the timeout here. (default: 600 seconds)
52 #
53 # boot_timeout = 1200