chiark / gitweb /
Restrict vagrant-cachier caches to only apt and chef.
[fdroidserver.git] / makebuildserver
1 #!/usr/bin/env python2
2
3 import os
4 import sys
5 import subprocess
6 import time
7 import hashlib
8 from optparse import OptionParser
9
10
11 def vagrant(params, cwd=None, printout=False):
12     """Run vagrant.
13
14     :param: list of parameters to pass to vagrant
15     :cwd: directory to run in, or None for current directory
16     :printout: True to print output in realtime, False to just
17                return it
18     :returns: (ret, out) where ret is the return code, and out
19                is the stdout (and stderr) from vagrant
20     """
21     p = subprocess.Popen(['vagrant'] + params, cwd=cwd,
22                          stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
23     out = ''
24     if printout:
25         while True:
26             line = p.stdout.readline()
27             if len(line) == 0:
28                 break
29             print line,
30             out += line
31         p.wait()
32     else:
33         out = p.communicate()[0]
34     return (p.returncode, out)
35
36 boxfile = 'buildserver.box'
37 serverdir = 'buildserver'
38
39 parser = OptionParser()
40 parser.add_option("-v", "--verbose", action="store_true", default=False,
41                   help="Spew out even more information than normal")
42 parser.add_option("-c", "--clean", action="store_true", default=False,
43                   help="Build from scratch, rather than attempting to update the existing server")
44 options, args = parser.parse_args()
45
46 config = {}
47 execfile('makebs.config.py', config)
48
49 if not os.path.exists('makebuildserver') or not os.path.exists(serverdir):
50     print 'This must be run from the correct directory!'
51     sys.exit(1)
52
53 if os.path.exists(boxfile):
54     os.remove(boxfile)
55
56 if options.clean:
57     vagrant(['destroy', '-f'], cwd=serverdir, printout=options.verbose)
58
59 # Update cached files.
60 cachedir = os.path.join('buildserver', 'cache')
61 if not os.path.exists(cachedir):
62     os.mkdir(cachedir)
63
64 cachefiles = [
65     ('android-sdk_r23.0.2-linux.tgz',
66      'https://dl.google.com/android/android-sdk_r23.0.2-linux.tgz',
67      'a86741fee9140c340b60fe545566db7c0a43a0963f3c7e64d07b4d05ebbe89f4'),
68     ('gradle-1.4-bin.zip',
69      'https://services.gradle.org/distributions/gradle-1.4-bin.zip',
70      'cd99e85fbcd0ae8b99e81c9992a2f10cceb7b5f009c3720ef3a0078f4f92e94e'),
71     ('gradle-1.6-bin.zip',
72      'https://services.gradle.org/distributions/gradle-1.6-bin.zip',
73      'de3e89d2113923dcc2e0def62d69be0947ceac910abd38b75ec333230183fac4'),
74     ('gradle-1.7-bin.zip',
75      'https://services.gradle.org/distributions/gradle-1.7-bin.zip',
76      '360c97d51621b5a1ecf66748c718594e5f790ae4fbc1499543e0c006033c9d30'),
77     ('gradle-1.8-bin.zip',
78      'https://services.gradle.org/distributions/gradle-1.8-bin.zip',
79      'a342bbfa15fd18e2482287da4959588f45a41b60910970a16e6d97959aea5703'),
80     ('gradle-1.9-bin.zip',
81      'https://services.gradle.org/distributions/gradle-1.9-bin.zip',
82      '097ddc2bcbc9da2bb08cbf6bf8079585e35ad088bafd42e8716bc96405db98e9'),
83     ('gradle-1.10-bin.zip',
84      'https://services.gradle.org/distributions/gradle-1.10-bin.zip',
85      '6e6db4fc595f27ceda059d23693b6f6848583950606112b37dfd0e97a0a0a4fe'),
86     ('gradle-1.11-bin.zip',
87      'https://services.gradle.org/distributions/gradle-1.11-bin.zip',
88      '07e235df824964f0e19e73ea2327ce345c44bcd06d44a0123d29ab287fc34091'),
89     ('gradle-1.12-bin.zip',
90      'https://services.gradle.org/distributions/gradle-1.12-bin.zip',
91      '8734b13a401f4311ee418173ed6ca8662d2b0a535be8ff2a43ecb1c13cd406ea'),
92     ('Kivy-1.7.2.tar.gz',
93      'https://pypi.python.org/packages/source/K/Kivy/Kivy-1.7.2.tar.gz',
94      '0485e2ef97b5086df886eb01f8303cb542183d2d71a159466f99ad6c8a1d03f1')
95     ]
96
97 if config['arch64']:
98     cachefiles.extend([
99         ('android-ndk-r9b-linux-x86_64.tar.bz2',
100          'https://dl.google.com/android/ndk/android-ndk-r9b-linux-x86_64.tar.bz2',
101          '8956e9efeea95f49425ded8bb697013b66e162b064b0f66b5c75628f76e0f532'),
102         ('android-ndk-r9b-linux-x86_64-legacy-toolchains.tar.bz2',
103          'https://dl.google.com/android/ndk/android-ndk-r9b-linux-x86_64-legacy-toolchains.tar.bz2',
104          'de93a394f7c8f3436db44568648f87738a8d09801a52f459dcad3fc047e045a1')])
105 else:
106     cachefiles.extend([
107         ('android-ndk-r9b-linux-x86.tar.bz2',
108          'https://dl.google.com/android/ndk/android-ndk-r9b-linux-x86.tar.bz2',
109          '748104b829dd12afb2fdb3044634963abb24cdb0aad3b26030abe2e9e65bfc81'),
110         ('android-ndk-r9b-linux-x86-legacy-toolchains.tar.bz2',
111          'https://dl.google.com/android/ndk/android-ndk-r9b-linux-x86-legacy-toolchains.tar.bz2',
112          '606aadf815ae28cc7b0154996247c70d609f111b14e44bcbcd6cad4c87fefb6f')])
113 wanted = []
114
115
116 def sha256_for_file(path):
117     with open(path, 'r') as f:
118         s = hashlib.sha256()
119         while True:
120             data = f.read(4096)
121             if not data:
122                 break
123             s.update(data)
124         return s.hexdigest()
125
126 for f, src, shasum in cachefiles:
127     relpath = os.path.join(cachedir, f)
128     if not os.path.exists(relpath):
129         print "Downloading " + f + " to cache"
130         if subprocess.call(['wget', src], cwd=cachedir) != 0:
131             print "...download of " + f + " failed."
132             sys.exit(1)
133     if shasum:
134         v = sha256_for_file(relpath)
135         if v != shasum:
136             print "Invalid shasum of '" + v + "' detected for " + f
137             sys.exit(1)
138         else:
139             print "...shasum verified for " + f
140
141     wanted.append(f)
142
143
144 # Generate an appropriate Vagrantfile for the buildserver, based on our
145 # settings...
146 vagrantfile = """
147 Vagrant::Config.run do |config|
148
149   if Vagrant.has_plugin?("vagrant-cachier")
150     config.cache.scope = :box
151     config.cache.auto_detect = false
152     config.cache.enable :apt
153     config.cache.enable :chef
154   end
155
156   config.vm.box = "{0}"
157   config.vm.box_url = "{1}"
158
159   config.vm.customize ["modifyvm", :id, "--memory", "{2}"]
160
161   config.vm.provision :shell, :path => "fixpaths.sh"
162 """.format(config['basebox'], config['baseboxurl'], config['memory'])
163 if 'aptproxy' in config and config['aptproxy']:
164     vagrantfile += """
165   config.vm.provision :shell, :inline => 'sudo echo "Acquire::http {{ Proxy \\"{0}\\"; }};" > /etc/apt/apt.conf.d/02proxy && sudo apt-get update'
166 """.format(config['aptproxy'])
167 vagrantfile += """
168   config.vm.provision :chef_solo do |chef|
169     chef.cookbooks_path = "cookbooks"
170     chef.log_level = :debug
171     chef.json = {
172       :settings => {
173         :sdk_loc => "/home/vagrant/android-sdk",
174         :ndk_loc => "/home/vagrant/android-ndk",
175         :user => "vagrant"
176       }
177     }
178     chef.add_recipe "fdroidbuild-general"
179     chef.add_recipe "android-sdk"
180     chef.add_recipe "android-ndk"
181     chef.add_recipe "gradle"
182     chef.add_recipe "kivy"
183   end
184 end
185 """
186
187 # Check against the existing Vagrantfile, and if they differ, we need to
188 # create a new box:
189 vf = os.path.join(serverdir, 'Vagrantfile')
190 writevf = True
191 if os.path.exists(vf):
192     vagrant(['halt'], serverdir)
193     with open(vf, 'r') as f:
194         oldvf = f.read()
195     if oldvf != vagrantfile:
196         print "Server configuration has changed, rebuild from scratch is required"
197         vagrant(['destroy', '-f'], serverdir)
198     else:
199         print "Re-provisioning existing server"
200         writevf = False
201 else:
202     print "No existing server - building from scratch"
203 if writevf:
204     with open(vf, 'w') as f:
205         f.write(vagrantfile)
206
207
208 print "Configuring build server VM"
209 returncode, out = vagrant(['up'], serverdir, printout=True)
210 with open(os.path.join(serverdir, 'up.log'), 'w') as log:
211     log.write(out)
212 if returncode != 0:
213     print "Failed to configure server"
214     sys.exit(1)
215
216 print "Writing buildserver ID"
217 p = subprocess.Popen(['git', 'rev-parse', 'HEAD'], stdout=subprocess.PIPE)
218 buildserverid = p.communicate()[0].strip()
219 print "...ID is " + buildserverid
220 subprocess.call(
221     ['vagrant', 'ssh', '-c', 'sh -c "echo {0} >/home/vagrant/buildserverid"'
222         .format(buildserverid)],
223     cwd=serverdir)
224
225 print "Stopping build server VM"
226 vagrant(['halt'], serverdir)
227
228 print "Waiting for build server VM to be finished"
229 ready = False
230 while not ready:
231     time.sleep(2)
232     returncode, out = vagrant(['status'], serverdir)
233     if returncode != 0:
234         print "Error while checking status"
235         sys.exit(1)
236     for line in out.splitlines():
237         if line.startswith("default"):
238             if line.find("poweroff") != -1:
239                 ready = True
240             else:
241                 print "Status: " + line
242
243 print "Packaging"
244 vagrant(['package', '--output', os.path.join('..', boxfile)], serverdir,
245         printout=options.verbose)
246 print "Adding box"
247 vagrant(['box', 'add', 'buildserver', boxfile, '-f'],
248         printout=options.verbose)
249
250 os.remove(boxfile)