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