Home | History | Annotate | Download | only in ndk

Lines Matching full:branch

38 def fetch_artifact(branch, build, pattern):
40 cmd = [fetch_artifact_path, '--branch', branch, '--target=linux',
51 logger().info('Creating branch %s', branch_name)
66 def install_new_release(branch, build, install_dir):
70 logger().info('Fetching %s from %s (artifacts matching %s)', build, branch,
72 fetch_artifact(branch, build, artifact_pattern)
122 def commit(branch, build, install_dir):
128 Taken from branch {branch}.""").format(branch=branch, build=build)
135 '-b', '--branch', default='master-ndk',
136 help='Branch to pull build from.')
141 '--use-current-branch', action='store_true',
142 help='Perform the update in the current branch. Do not repo start.')
163 install_new_release(args.branch, args.build, install_dir)
165 commit(args.branch, args.build, install_dir)