1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-08-17 03:40:11 +02:00
fdroidserver/makebuildserver.py
2013-05-25 13:55:16 +01:00

88 lines
2.6 KiB
Python
Executable File

#!/usr/bin/python
import os
import sys
import subprocess
import time
def vagrant(params, cwd=None):
p = subprocess.Popen(['vagrant'] + params, cwd=cwd,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
return (p.returncode, out, err)
boxfile = 'buildserver.box'
serverdir = 'buildserver'
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)
# Update cached files.
cachedir = os.path.join('buildserver', 'cache')
if not os.path.exists(cachedir):
os.mkdir(cachedir)
cachefiles = [
('android-sdk_r21.0.1-linux.tgz',
'http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz',
'cookbooks/recipes/android-sdk/default.rb'),
('android-ndk-r8e-linux-x64.tar.bz2',
'http://dl.google.com/android/ndk/android-ndk-r8e-linux-x64.tar.bz2',
'cookbooks/recipes/android-ndk/default.rb')
]
wanted = []
for f, src, check in cachefiles:
if subprocess.call('grep ' + f + ' ' + check) != 0:
print "Cache mismatch - " + f + " is not mentioned in " + check
sys.exit(1)
if not os.path.exists(os.path.join(cachedir, f)):
print "Downloading " + f + " to cache"
if subprocess.call('wget ' + src, cwd=cachedir) != 0:
print "...download of " + f + " failed."
sys.exit(1)
wanted.append(f)
for f in os.listdir(cachedir):
if not f in wanted:
print "Removing unwanted cache file " + f
os.remove(os.path.join(cachedir, f))
vagrant(['halt'], serverdir)
print "Configuring build server VM"
returncode, out, err = vagrant(['up'], serverdir)
with open(os.path.join(serverdir, 'up.log'), 'w') as log:
log.write('==stdout==\n' + out + '\n\n')
log.write('==stderr==\n' + err + '\n\n')
if returncode != 0:
print "Failed to configure server"
sys.exit(1)
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)
returncode, out, err = vagrant(['status'], serverdir)
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)