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

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

Issue 1574433004: Allow a single trybot to mirror multiple waterfall bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@bot-config-and-test-db
Patch Set: Created 4 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
Index: scripts/slave/recipe_modules/auto_bisect/local_bisect.py
diff --git a/scripts/slave/recipe_modules/auto_bisect/local_bisect.py b/scripts/slave/recipe_modules/auto_bisect/local_bisect.py
index 518e14625d6419e847539204ec1a0b230b6b5f32..6d1dc3af808be4cc69952d102270b8a107ff7489 100644
--- a/scripts/slave/recipe_modules/auto_bisect/local_bisect.py
+++ b/scripts/slave/recipe_modules/auto_bisect/local_bisect.py
@@ -35,8 +35,9 @@ def _ensure_checkout(api): # pragma: no cover
buildername = api.m.properties.get('buildername')
# TODO(akuegel): Explicitly load the configs for the builders and don't rely
# on builders.py in chromium_tests recipe module.
- api.m.chromium_tests.configure_build(mastername, buildername)
- api.m.chromium_tests.prepare_checkout(mastername, buildername)
+ bot_desc = api.m.chromium_tests.create_bot_desc(mastername, buildername)
+ api.m.chromium_tests.configure_build(bot_desc)
+ api.m.chromium_tests.prepare_checkout(bot_desc)
def _gather_reference_range(api, bisector): # pragma: no cover

Powered by Google App Engine
This is Rietveld 408576698