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

Unified Diff: scripts/slave/recipes/bisection/desktop_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/recipes/bisection/desktop_bisect.py
diff --git a/scripts/slave/recipes/bisection/desktop_bisect.py b/scripts/slave/recipes/bisection/desktop_bisect.py
index 57439964218ef967c6b3dc1b67e103eee31fcbd5..a8985c85b7f6da80785e8ba6367aff8846282299 100644
--- a/scripts/slave/recipes/bisection/desktop_bisect.py
+++ b/scripts/slave/recipes/bisection/desktop_bisect.py
@@ -21,10 +21,11 @@ def RunSteps(api):
buildername = api.properties.get('buildername')
# TODO(akuegel): Explicitly load the builder configs instead of relying on
# builder.py from chromium_tests recipe module.
- api.chromium_tests.configure_build(mastername, buildername)
+ bot_desc = api.chromium_tests.create_bot_desc(mastername, buildername)
+ api.chromium_tests.configure_build(bot_desc)
api.gclient.apply_config('perf')
update_step, bot_db = \
- api.chromium_tests.prepare_checkout(mastername, buildername)
+ api.chromium_tests.prepare_checkout(bot_desc)
api.auto_bisect.start_try_job(api, update_step=update_step,
bot_db=bot_db)

Powered by Google App Engine
This is Rietveld 408576698