2013-10-31 13:25:39 +01:00
|
|
|
#!/usr/bin/env python2
|
2012-09-24 15:04:58 +02:00
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import subprocess
|
|
|
|
import time
|
2013-10-20 22:16:42 +02:00
|
|
|
from optparse import OptionParser
|
2013-05-31 08:48:39 +02:00
|
|
|
|
|
|
|
def vagrant(params, cwd=None, printout=False):
|
|
|
|
"""Run vagrant.
|
|
|
|
|
|
|
|
:param: list of parameters to pass to vagrant
|
|
|
|
:cwd: directory to run in, or None for current directory
|
|
|
|
:printout: True to print output in realtime, False to just
|
|
|
|
return it
|
|
|
|
:returns: (ret, out) where ret is the return code, and out
|
|
|
|
is the stdout (and stderr) from vagrant
|
|
|
|
"""
|
2012-09-24 15:04:58 +02:00
|
|
|
p = subprocess.Popen(['vagrant'] + params, cwd=cwd,
|
2013-05-31 08:48:39 +02:00
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
|
|
|
out = ''
|
|
|
|
if printout:
|
|
|
|
while True:
|
|
|
|
line = p.stdout.readline()
|
|
|
|
if len(line) == 0:
|
|
|
|
break
|
|
|
|
print line,
|
|
|
|
out += line
|
|
|
|
p.wait()
|
|
|
|
else:
|
|
|
|
out = p.communicate()[0]
|
|
|
|
return (p.returncode, out)
|
2012-09-24 15:04:58 +02:00
|
|
|
|
|
|
|
boxfile = 'buildserver.box'
|
|
|
|
serverdir = 'buildserver'
|
|
|
|
|
2013-10-20 22:16:42 +02:00
|
|
|
parser = OptionParser()
|
|
|
|
parser.add_option("-v", "--verbose", action="store_true", default=False,
|
|
|
|
help="Spew out even more information than normal")
|
|
|
|
parser.add_option("-c", "--clean", action="store_true", default=False,
|
|
|
|
help="Build from scratch, rather than attempting to update the existing server")
|
|
|
|
options, args = parser.parse_args()
|
|
|
|
|
2013-12-06 16:38:46 +01:00
|
|
|
config = {}
|
|
|
|
execfile('makebs.config.py', config)
|
2013-10-20 22:16:42 +02:00
|
|
|
|
2012-09-24 15:04:58 +02:00
|
|
|
if not os.path.exists('makebuildserver.py') or not os.path.exists(serverdir):
|
|
|
|
print 'This must be run from the correct directory!'
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
if os.path.exists(boxfile):
|
|
|
|
os.remove(boxfile)
|
|
|
|
|
2013-10-20 22:16:42 +02:00
|
|
|
if options.clean:
|
|
|
|
vagrant(['destroy', '-f'], cwd=serverdir, printout=options.verbose)
|
2013-05-25 14:55:16 +02:00
|
|
|
|
|
|
|
# Update cached files.
|
|
|
|
cachedir = os.path.join('buildserver', 'cache')
|
|
|
|
if not os.path.exists(cachedir):
|
|
|
|
os.mkdir(cachedir)
|
|
|
|
cachefiles = [
|
2013-11-02 20:33:44 +01:00
|
|
|
('android-sdk_r22.3-linux.tgz',
|
|
|
|
'http://dl.google.com/android/android-sdk_r22.3-linux.tgz',
|
|
|
|
'4077575c98075480e0156c10e48a1521e31c7952768271a206870e6813057f4f'),
|
2013-10-17 15:29:52 +02:00
|
|
|
('gradle-1.8-bin.zip',
|
|
|
|
'http://services.gradle.org/distributions/gradle-1.8-bin.zip',
|
2013-11-24 23:11:02 +01:00
|
|
|
'a342bbfa15fd18e2482287da4959588f45a41b60910970a16e6d97959aea5703'),
|
|
|
|
('Kivy-1.7.2.tar.gz',
|
|
|
|
'http://pypi.python.org/packages/source/K/Kivy/Kivy-1.7.2.tar.gz',
|
|
|
|
'0485e2ef97b5086df886eb01f8303cb542183d2d71a159466f99ad6c8a1d03f1')
|
|
|
|
]
|
2013-11-04 10:22:22 +01:00
|
|
|
if config['arch64']:
|
2013-05-31 08:48:39 +02:00
|
|
|
cachefiles.extend([
|
2013-12-06 12:23:50 +01:00
|
|
|
('android-ndk-r9b-linux-x64_64.tar.bz2',
|
|
|
|
'http://dl.google.com/android/ndk/android-ndk-r9b-linux-x86_64.tar.bz2',
|
|
|
|
'8956e9efeea95f49425ded8bb697013b66e162b064b0f66b5c75628f76e0f532'),
|
|
|
|
('android-ndk-r9b-linux-x86_64-legacy-toolchains.tar.bz2',
|
|
|
|
'http://dl.google.com/android/ndk/android-ndk-r9b-linux-x86_64-legacy-toolchains.tar.bz2',
|
|
|
|
'de93a394f7c8f3436db44568648f87738a8d09801a52f459dcad3fc047e045a1')])
|
2013-05-31 08:48:39 +02:00
|
|
|
else:
|
|
|
|
cachefiles.extend([
|
2013-12-06 12:23:50 +01:00
|
|
|
('android-ndk-r9b-linux-x86.tar.bz2',
|
|
|
|
'http://dl.google.com/android/ndk/android-ndk-r9b-linux-x86.tar.bz2',
|
|
|
|
'748104b829dd12afb2fdb3044634963abb24cdb0aad3b26030abe2e9e65bfc81'),
|
|
|
|
('android-ndk-r9b-linux-x86-legacy-toolchains.tar.bz2',
|
|
|
|
'http://dl.google.com/android/ndk/android-ndk-r9b-linux-x86-legacy-toolchains.tar.bz2',
|
|
|
|
'606aadf815ae28cc7b0154996247c70d609f111b14e44bcbcd6cad4c87fefb6f')])
|
2013-05-25 14:55:16 +02:00
|
|
|
wanted = []
|
2013-08-09 20:37:13 +02:00
|
|
|
for f, src, shasum in cachefiles:
|
2013-05-25 14:55:16 +02:00
|
|
|
if not os.path.exists(os.path.join(cachedir, f)):
|
|
|
|
print "Downloading " + f + " to cache"
|
2013-05-31 08:48:39 +02:00
|
|
|
if subprocess.call(['wget', src], cwd=cachedir) != 0:
|
2013-05-25 14:55:16 +02:00
|
|
|
print "...download of " + f + " failed."
|
|
|
|
sys.exit(1)
|
2013-08-09 20:37:13 +02:00
|
|
|
if shasum:
|
|
|
|
p = subprocess.Popen(['shasum', '-a', '256', os.path.join(cachedir, f)],
|
|
|
|
stdout=subprocess.PIPE)
|
|
|
|
v = p.communicate()[0].split(' ')[0]
|
|
|
|
if v != shasum:
|
|
|
|
print "Invalid shasum of '" + v + "' detected for " + f
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
print "...shasum verified for " + f
|
|
|
|
|
2013-05-25 14:55:16 +02:00
|
|
|
wanted.append(f)
|
|
|
|
|
|
|
|
|
2013-05-31 08:48:39 +02:00
|
|
|
# Generate an appropriate Vagrantfile for the buildserver, based on our
|
|
|
|
# settings...
|
|
|
|
vagrantfile = """
|
|
|
|
Vagrant::Config.run do |config|
|
|
|
|
|
|
|
|
config.vm.box = "{0}"
|
|
|
|
config.vm.box_url = "{1}"
|
|
|
|
|
|
|
|
config.vm.customize ["modifyvm", :id, "--memory", "{2}"]
|
|
|
|
|
|
|
|
config.vm.provision :shell, :path => "fixpaths.sh"
|
2013-11-04 10:22:22 +01:00
|
|
|
""".format(config['basebox'], config['baseboxurl'], config['memory'])
|
|
|
|
if 'aptproxy' in config and config['aptproxy']:
|
2013-05-31 08:48:39 +02:00
|
|
|
vagrantfile += """
|
|
|
|
config.vm.provision :shell, :inline => 'sudo echo "Acquire::http {{ Proxy \\"{0}\\"; }};" > /etc/apt/apt.conf.d/02proxy && sudo apt-get update'
|
2013-11-04 10:22:22 +01:00
|
|
|
""".format(config['aptproxy'])
|
2013-05-31 08:48:39 +02:00
|
|
|
vagrantfile += """
|
|
|
|
config.vm.provision :chef_solo do |chef|
|
|
|
|
chef.cookbooks_path = "cookbooks"
|
|
|
|
chef.log_level = :debug
|
|
|
|
chef.json = {
|
|
|
|
:settings => {
|
|
|
|
:sdk_loc => "/home/vagrant/android-sdk",
|
|
|
|
:ndk_loc => "/home/vagrant/android-ndk",
|
|
|
|
:user => "vagrant"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chef.add_recipe "fdroidbuild-general"
|
|
|
|
chef.add_recipe "android-sdk"
|
|
|
|
chef.add_recipe "android-ndk"
|
2013-11-24 23:11:02 +01:00
|
|
|
chef.add_recipe "kivy"
|
2013-05-31 08:48:39 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Check against the existing Vagrantfile, and if they differ, we need to
|
|
|
|
# create a new box:
|
|
|
|
vf = os.path.join(serverdir, 'Vagrantfile')
|
|
|
|
writevf = True
|
|
|
|
if os.path.exists(vf):
|
|
|
|
vagrant(['halt'], serverdir)
|
|
|
|
with open(vf, 'r') as f:
|
|
|
|
oldvf = f.read()
|
|
|
|
if oldvf != vagrantfile:
|
|
|
|
print "Server configuration has changed, rebuild from scratch is required"
|
|
|
|
vagrant(['destroy', '-f'], serverdir)
|
|
|
|
else:
|
|
|
|
print "Re-provisioning existing server"
|
|
|
|
writevf = False
|
|
|
|
else:
|
|
|
|
print "No existing server - building from scratch"
|
|
|
|
if writevf:
|
|
|
|
with open(vf, 'w') as f:
|
|
|
|
f.write(vagrantfile)
|
|
|
|
|
|
|
|
|
2012-09-24 15:04:58 +02:00
|
|
|
print "Configuring build server VM"
|
2013-05-31 08:48:39 +02:00
|
|
|
returncode, out = vagrant(['up'], serverdir, printout=True)
|
2013-02-12 16:20:30 +01:00
|
|
|
with open(os.path.join(serverdir, 'up.log'), 'w') as log:
|
2013-05-31 08:48:39 +02:00
|
|
|
log.write(out)
|
2013-01-21 12:09:56 +01:00
|
|
|
if returncode != 0:
|
|
|
|
print "Failed to configure server"
|
2013-04-10 10:36:31 +02:00
|
|
|
sys.exit(1)
|
2013-11-09 12:51:39 +01:00
|
|
|
|
|
|
|
print "Writing buildserver ID"
|
|
|
|
p = subprocess.Popen(['git', 'rev-parse', 'HEAD'], stdout=subprocess.PIPE)
|
|
|
|
buildserverid = p.communicate()[0].strip()
|
|
|
|
print "...ID is " + buildserverid
|
|
|
|
subprocess.call(
|
|
|
|
['vagrant', 'ssh', '-c', 'sh -c "echo {0} >/home/vagrant/buildserverid"'
|
|
|
|
.format(buildserverid)],
|
|
|
|
cwd=serverdir)
|
|
|
|
|
2012-09-24 15:04:58 +02:00
|
|
|
print "Stopping build server VM"
|
|
|
|
vagrant(['halt'], serverdir)
|
|
|
|
|
|
|
|
print "Waiting for build server VM to be finished"
|
|
|
|
ready = False
|
|
|
|
while not ready:
|
|
|
|
time.sleep(2)
|
2013-05-31 08:48:39 +02:00
|
|
|
returncode, out = vagrant(['status'], serverdir)
|
2012-09-24 15:04:58 +02:00
|
|
|
if returncode != 0:
|
|
|
|
print "Error while checking status"
|
|
|
|
sys.exit(1)
|
|
|
|
for line in out.splitlines():
|
|
|
|
if line.startswith("default"):
|
|
|
|
if line.find("poweroff") != -1:
|
|
|
|
ready = True
|
|
|
|
else:
|
|
|
|
print "Status: " + line
|
|
|
|
|
|
|
|
print "Packaging"
|
|
|
|
vagrant(['package', '--output', os.path.join('..', boxfile)], serverdir)
|
|
|
|
print "Adding box"
|
|
|
|
vagrant(['box', 'add', 'buildserver', boxfile, '-f'])
|
|
|
|
|
|
|
|
os.remove(boxfile)
|
|
|
|
|