Lines Matching full:branch
74 def fetch_artifact(branch, build, target, pattern):
77 target, branch, pattern)
79 cmd = [fetch_artifact_path, '--branch', branch, '--target', target,
85 """Creates a new branch in the project."""
87 logger().info('Creating branch %s', branch_name)
91 def commit(branch, build, add_paths):
98 Taken from branch {branch}.""").format(branch=branch, build=build)
114 def install_new_release(branch, build, install_dir):
117 install_entry(branch, build, install_dir, entry)
120 def install_entry(branch, build, install_dir, entry):
127 fetch_artifact(branch, build, target, name)
143 '-b', '--branch', default='aosp-master',
144 help='Branch to pull build from.')
147 '--use-current-branch', action='store_true',
148 help='Perform the update in the current branch. Do not repo start.')
172 install_new_release(args.branch, args.build, install_dir)
174 commit(args.branch, args.build, artifacts)