application-services/taskcluster/scripts/setup-branch-build-firefox-...

37 строки
1.2 KiB
Python
Executable File

#!/usr/bin/env python3
import argparse
import os
import subprocess
def main():
args = parse_args()
git_checkout(firefox_ios_repo(args), args.branch)
subprocess.check_call(["./rust_components_local.sh", "-a", "../", "../rust-components-swift"],
cwd="firefox-ios")
def parse_args():
parser = argparse.ArgumentParser(description='Setup a firefox-ios branch build in taskcluster')
parser.add_argument('owner', help='firefox-ios repository owner')
parser.add_argument('branch', help='firefox-ios branch')
return parser.parse_args()
def firefox_ios_repo(args):
return f'https://github.com/{args.owner}/firefox-ios'
def git_checkout(url, branch):
subprocess.check_call(['git', 'clone', '--branch', branch, '--recurse-submodules', '--depth', '1', '--', url])
subprocess.check_call([
'git', 'clone', '--branch', 'main', '--recurse-submodules', '--depth', '1',
'--', 'https://github.com/mozilla/rust-components-swift',
])
def write_local_properties(path, local_properties):
path = os.path.abspath(path)
print(f"Writing local properties to {path}")
with open(path, 'w') as f:
f.write(local_properties)
if __name__ == '__main__':
main()