mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
Remove the other explicit vagrant references
Aside from the VM setup (which is now self-contained) the build process only cares that it's handed a clean VM that it can access via ssh, given a host/port/user/pubkey combination. There's no dependency outside the getvm/releasevm functions on what kind of vm it is, what user the build runs as, etc.
This commit is contained in:
parent
ee157b7c83
commit
225c644b3e
1 changed files with 3 additions and 2 deletions
|
|
@ -525,9 +525,10 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
|
|||
if onserver:
|
||||
manifest = os.path.join(root_dir, 'AndroidManifest.xml')
|
||||
if os.path.exists(manifest):
|
||||
with open('/home/vagrant/buildserverid', 'r') as f:
|
||||
homedir = os.path.expanduser('~')
|
||||
with open(os.path.join(homedir, 'buildserverid'), 'r') as f:
|
||||
buildserverid = f.read()
|
||||
with open('/home/vagrant/fdroidserverid', 'r') as f:
|
||||
with open(os.path.join(homedir, 'fdroidserverid'), 'r') as f:
|
||||
fdroidserverid = f.read()
|
||||
with open(manifest, 'r') as f:
|
||||
manifestcontent = f.read()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue