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

Unified Diff: scripts/slave/recipe_modules/auto_bisect/example.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/example.py
diff --git a/scripts/slave/recipe_modules/auto_bisect/example.py b/scripts/slave/recipe_modules/auto_bisect/example.py
index ec5c1e6256f627bf4d4ccfa4fef7bd3bbe564077..7e88cfdf40d5616677fa48d8d5c3b6bfae7b7acc 100644
--- a/scripts/slave/recipe_modules/auto_bisect/example.py
+++ b/scripts/slave/recipe_modules/auto_bisect/example.py
@@ -61,8 +61,9 @@ def RunSteps(api):
# builders.py entries in chromium_tests.
mastername = api.properties.get('mastername')
buildername = api.properties.get('buildername')
- api.chromium_tests.configure_build(mastername, buildername)
- api.chromium_tests.prepare_checkout(mastername, buildername)
+ bot_desc = api.chromium_tests.create_bot_desc(mastername, buildername)
+ api.chromium_tests.configure_build(bot_desc)
+ api.chromium_tests.prepare_checkout(bot_desc)
api.auto_bisect.run_bisect_script('dummy_extra_src', '/dummy/path/')

Powered by Google App Engine
This is Rietveld 408576698