Lines Matching full:branch
1155 'branch': branch}
1199 'branch': branch}
1235 'branch': branch}
1247 build_path = '%(branch)s/%(target)s/%(build_id)s' % build_info
1424 @param image: The image name, eg: <board>-<branch>/<Milestone>-<build>.
2116 def wait_for_artifacts_staged(self, target, build_id, branch,
2123 @param branch: Branch of the android build to stage.
2132 'branch': branch,
2142 def call_and_wait(self, call_name, target, build_id, branch, archive_url,
2151 @param branch: Branch of the android build to stage.
2168 'branch': branch,
2179 def stage_artifacts(self, target=None, build_id=None, branch=None,
2193 @param branch: Branch of the android build to stage.
2195 branch/target/build_id
2204 if image and not target and not build_id and not branch:
2205 branch, target, build_id = utils.parse_launch_control_build(image)
2206 if not target or not build_id or not branch:
2208 'build_id and branch) to stage.')
2212 'branch': branch}
2218 'and branch.')
2223 def get_pull_url(self, target, build_id, branch):
2228 @param branch: Branch of the android build.
2233 return os.path.join(self.url(), 'static', branch, target, build_id)
2236 def trigger_download(self, target, build_id, branch, artifacts=None,
2252 @param branch: Branch of the android build to stage.
2265 'branch': branch}
2276 def finish_download(self, target, build_id, branch, os='android'):
2287 @param branch: Branch of the android build to stage.
2294 'branch': branch}
2303 def get_staged_file_url(self, filename, target, build_id, branch):
2310 @param branch: Branch of the android build to stage.
2316 'branch': branch,
2326 If the build name is in the format [branch]/[target]/LATEST, return the
2333 branch, target, build_id = utils.parse_launch_control_build(build_name)
2336 call = self.build_call('latestbuild', branch=branch, target=target,
2340 {'branch': branch,