Home | History | Annotate | Download | only in build

Lines Matching refs:build_id

55         BUILD_BUILDID_KEY: string, index in build containing build_id
306 """Get the most recent build_id for a given account, branch and target
335 return build['build_id']
341 self, account_id, build_id, branch, target, method=POST):
348 build_id: string, ID of the build
359 params = {"1": build_id, "2": target, "3": branch}
370 build_id,
380 build_id: string/int, id of the build.
392 "1": str(build_id),
415 branch, target, build_id,
452 build_id='latest',
456 If build_id not given, get latest.
464 build_id: string, build ID of an artifact to fetch (or 'latest').
474 if build_id == 'latest':
475 build_id = self.GetLatestBuildId(account_id=account_id,
479 print("latest build ID = %s" % build_id)
480 artifact_info["build_id"] = build_id
482 if "build_id" in artifact_name:
483 artifact_name = artifact_name.format(build_id=build_id)
487 build_id=build_id,
494 "No artifacts found for build_id=%s, branch=%s, target=%s"
495 % (build_id, branch, target))
506 build_id=build_id,