Lines Matching full:branch
84 def fetch_artifact(branch, build, target, name): argument
90 target, branch, name)
92 cmd = [fetch_artifact_path, '--branch', branch, '--target', target,
98 """Creates a new branch in the project."""
100 logger().info('Creating branch %s', branch_name)
104 def commit(branch, build, add_paths): argument
111 Taken from branch {branch}.""").format(branch=branch, build=build)
127 def install_new_release(branch, build, install_dir): argument
130 install_entry(branch, build, install_dir, entry)
133 def install_entry(branch, build, install_dir, entry): argument
140 fetch_artifact(branch, build, target, name)
157 '-b', '--branch', default='aosp-simpleperf-release',
158 help='Branch to pull build from.')
161 '--use-current-branch', action='store_true',
162 help='Perform the update in the current branch. Do not repo start.')
186 install_new_release(args.branch, args.build, install_dir)
188 commit(args.branch, args.build, artifacts)