Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(286)

Unified Diff: tools/auto_bisect/fetch_build.py

Issue 806943007: Use builder_type when requesting/fetching builds, and add support for full linux builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes in response to code review Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/auto_bisect/configs/linux.bisect.functional.cfg ('k') | tools/auto_bisect/request_build.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/auto_bisect/fetch_build.py
diff --git a/tools/auto_bisect/fetch_build.py b/tools/auto_bisect/fetch_build.py
index ac3f032f5d1691889e70cb6acbc2edc04dbbcf66..57e9aca07f22b39ad7104f63146fea39bc1f1df2 100644
--- a/tools/auto_bisect/fetch_build.py
+++ b/tools/auto_bisect/fetch_build.py
@@ -51,6 +51,8 @@ def GetBucketAndRemotePath(revision, builder_type=PERF_BUILDER,
Returns:
A pair of strings (bucket, path), where the archive is expected to be.
"""
+ logging.info('Creating BuildArchive, type "%s", arch "%s", platform "%s".',
+ builder_type, target_arch, target_platform)
build_archive = BuildArchive.Create(
builder_type, target_arch=target_arch, target_platform=target_platform,
extra_src=extra_src)
@@ -70,7 +72,9 @@ class BuildArchive(object):
@staticmethod
def Create(builder_type, target_arch='ia32', target_platform='chromium',
- extra_src=None):
+ extra_src=None):
+ logging.info('Creating BuildArchive, type "%s", arch "%s", platform "%s".',
+ builder_type, target_arch, target_platform)
if builder_type == PERF_BUILDER:
return PerfBuildArchive(target_arch, target_platform)
if builder_type == FULL_BUILDER:
@@ -414,4 +418,3 @@ def Main(argv):
if __name__ == '__main__':
sys.exit(Main(sys.argv))
-
« no previous file with comments | « tools/auto_bisect/configs/linux.bisect.functional.cfg ('k') | tools/auto_bisect/request_build.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698