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

Unified Diff: scripts/slave/recipe_modules/auto_bisect/bisector.py

Issue 2088033002: Change WebView bisect bot to grab 64 bit builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Update master.cfg Created 4 years, 6 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
Index: scripts/slave/recipe_modules/auto_bisect/bisector.py
diff --git a/scripts/slave/recipe_modules/auto_bisect/bisector.py b/scripts/slave/recipe_modules/auto_bisect/bisector.py
index 56d540ea5d00cb2ae64dfc1687818fe80660c1df..5cf20e35770a7b87b667cc6e24c1b003c2952bf9 100644
--- a/scripts/slave/recipe_modules/auto_bisect/bisector.py
+++ b/scripts/slave/recipe_modules/auto_bisect/bisector.py
@@ -808,7 +808,7 @@ class Bisector(object):
return 'win_perf_bisect_builder'
if 'android' in bot_name:
- if 'nexus9' in bot_name:
+ if any(b in bot_name for b in ['arm64', 'nexus9']):
return 'android_arm64_perf_bisect_builder'
return 'android_perf_bisect_builder'
@@ -836,7 +836,7 @@ class Bisector(object):
return 'gs://chrome-perf/Win Builder/full-build-win32_'
if 'android' in bot_name:
- if 'nexus9' in bot_name:
+ if any(b in bot_name for b in ['arm64', 'nexus9']):
return 'gs://chrome-perf/android_perf_rel_arm64/full-build-linux_'
return 'gs://chrome-perf/android_perf_rel/full-build-linux_'
« no previous file with comments | « masters/master.tryserver.chromium.perf/slaves.cfg ('k') | scripts/slave/recipes/bisection/android_bisect.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698