Home
last modified time | relevance | path

Searched refs:branch (Results 1 – 25 of 40) sorted by relevance

12

/tools/acloud/public/actions/
Dcreate_cuttlefish_action.py54 def __init__(self, cfg, build_target, build_id, branch=None, argument
76 self._branch = branch
87 build_target, build_id, branch)
170 branch=self.build_info.branch,
172 kernel_branch=self.kernel_build_info.branch,
178 system_branch=self.system_build_info.branch,
188 branch=None, argument
250 build_id, branch, kernel_build_id, kernel_branch, kernel_build_target,
258 cfg, build_target, build_id, branch=branch,
Dcreate_goldfish_action.py74 branch=None, argument
113 build_target, build_id, branch)
158 branch=self.build_info.branch,
160 emulator_branch=self.emulator_build_info.branch,
162 kernel_branch=self.kernel_build_info.branch,
243 branch=None, argument
280 branch = avd_spec.remote_image[constants.BUILD_BRANCH]
309 if not build_id and not branch:
332 branch=branch,
Dcreate_goldfish_action_test.py138 branch=self.BRANCH,
194 branch=self.BRANCH,
246 branch=None,
258 branch=self.BRANCH,
312 branch=self.BRANCH,
369 branch=self.BRANCH,
423 branch=self.BRANCH,
Dcreate_cuttlefish_action_test.py123 cfg, self.BUILD_TARGET, self.BUILD_ID, branch=self.BRANCH,
135 branch=self.BRANCH,
/tools/acloud/internal/lib/
Dcvd_compute_client_multi_stage.py74 def _ProcessBuild(build_id=None, branch=None, build_target=None): argument
86 return build_id or branch
87 elif build_target and not branch:
88 branch = _DEFAULT_BRANCH
89 return (build_id or branch) + "/" + build_target
156 build_target=None, branch=None, build_id=None, argument
220 self.FetchBuild(build_id, branch, build_target, system_build_id,
499 def FetchBuild(self, build_id, branch, build_target, system_build_id, argument
510 default_build = _ProcessBuild(build_id, branch, build_target)
Dgoldfish_compute_client.py143 branch, argument
196 branch=branch, build_id=build_id)
199 branch=kernel_branch, build_id=kernel_build_id)
207 branch=emulator_branch, build_id=emulator_build_id)
Dcvd_compute_client_multi_stage_test.py127 self.assertEqual(_ProcessBuild(build_id="123", branch="abc", build_target="def"), "123/def")
128 self.assertEqual(_ProcessBuild(build_id=None, branch="abc", build_target="def"), "abc/def")
129 self.assertEqual(_ProcessBuild(build_id="123", branch=None, build_target="def"), "123/def")
130 self.assertEqual(_ProcessBuild(build_id="123", branch="abc", build_target=None), "123")
131 self.assertEqual(_ProcessBuild(build_id=None, branch="abc", build_target=None), "abc")
132 self.assertEqual(_ProcessBuild(build_id="123", branch=None, build_target=None), "123")
133 self.assertEqual(_ProcessBuild(build_id=None, branch=None, build_target=None), None)
Dcvd_compute_client.py71 build_target=None, branch=None, build_id=None, argument
117 branch=branch, build_id=build_id)
120 branch=kernel_branch, build_id=kernel_build_id)
127 branch=system_branch, build_id=system_build_id)
Dandroid_build_client.py177 branch=build_branch,
192 def GetBuildInfo(self, build_target, build_id, branch): argument
212 elif branch:
215 branch=branch,
Dgoldfish_compute_client_test.py106 branch=self.BRANCH, build_id=self.BUILD_ID),
109 branch=self.KERNEL_BRANCH, build_id=self.KERNEL_BUILD_ID),
115 branch=self.EMULATOR_BRANCH,
Dandroid_build_client_test.py142 branch = self.client.GetBranch(self.BUILD_TARGET, self.BUILD_ID)
146 self.assertEqual(branch, build_info["branch"])
159 branch=self.BUILD_BRANCH,
Dcvd_compute_client_test.py103 branch=self.BRANCH, build_id=self.BUILD_ID),
105 branch=self.KERNEL_BRANCH, build_id=self.KERNEL_BUILD_ID),
/tools/acloud/
DREADME.md59 for cuttlefish phone target in the branch of your repo, default aosp master
69 target in the branch of your repo)
77 When specifying an Android Build image, you can specify the branch,
78 target and/or build id (e.g. `--branch my_branch`). Acloud will assume the
81 * `--branch`: The branch of the repo you're running the acloud command in, e.g.
82 in an aosp repo on the master branch, acloud will infer the aosp-master branch.
87 * `--build-id`: Default to the Last Known Good Build (LKGB) id for the branch and
/tools/tradefederation/core/src/com/android/tradefed/util/
DBuildInfoUtil.java59 String buildId, buildAlias, buildFlavor, branch; in bootstrapDeviceBuildAttributes() local
86 branch = overrideBuildBranch; in bootstrapDeviceBuildAttributes()
88 branch = in bootstrapDeviceBuildAttributes()
96 buildInfo.setBuildBranch(branch); in bootstrapDeviceBuildAttributes()
/tools/acloud/public/
Dacloud_main.py251 if not parsed_args.build_id and not parsed_args.branch:
256 not parsed_args.emulator_branch and not parsed_args.branch):
363 branch=args.branch,
383 branch=args.branch,
/tools/external_updater/
Dgit_utils.py63 def get_commits_ahead(proj_path, branch, base_branch): argument
66 '{}...{}'.format(branch, base_branch)],
119 def merge(proj_path, branch): argument
122 out = _run(['git', 'merge', branch, '--no-commit'],
/tools/test/connectivity/acts/framework/acts/test_utils/power/loggers/
Dpower_metric_logger.py51 def set_branch(self, branch): argument
52 self.proto.branch = branch
/tools/acloud/create/
Davd_spec.py493 self._remote_image[constants.BUILD_BRANCH] = args.branch
580 branch = None
598 branch = branch_prefix + match.group("branch")
600 if branch:
601 return branch
620 branch = re.split("-|_", self._remote_image[constants.BUILD_BRANCH])[0]
622 _BRANCH_TARGET_PREFIX.get(branch, ""),
/tools/tradefederation/core/tests/src/com/android/tradefed/result/
DLogFileSaverTest.java68 final String branch = "somebranch"; in testGetFileDir() local
71 EasyMock.expect(mockBuild.getBuildBranch()).andReturn(branch).anyTimes(); in testGetFileDir()
85 assertEquals(branch, branchDir.getName()); in testGetFileDir()
128 final String branch = "somebranch"; in testGetFileDir_retention() local
131 EasyMock.expect(mockBuild.getBuildBranch()).andReturn(branch).anyTimes(); in testGetFileDir_retention()
/tools/acloud/internal/proto/
Dinternal_config.proto53 // each branch only supports a subset of devices. So ideally,
54 // we should have one config per branch, and only specify supported
55 // devices for that branch in the config.
/tools/metalava/
DDOWNLOADING.md3 Metalava can be downloaded from the `metalava-master` manifest branch via `repo` as explained below
42 For anyone that is already working in the `aosp/master` branch, you can use that repo checkout inst…
/tools/tradefederation/core/proto/
Dbuild_info.proto46 // The branch where the build come from: For example: git_main
47 string branch = 3; field
/tools/repohooks/rh/
Dgit.py35 branch = result.stdout.strip()
38 cmd = ['git', 'config', 'branch.%s.remote' % branch]
/tools/tradefederation/core/src/com/android/tradefed/build/
DOtaDeviceBuildInfo.java138 public void setBuildBranch(String branch) { in setBuildBranch() argument
139 mBaselineBuild.setBuildBranch(branch); in setBuildBranch()
/tools/tradefederation/core/tests/res/config/suite/
Dsuite.md71 --branch, --build-id etc. A sample command is as follows:
76 --branch git_main --build-flavor angler-userdebug \

12