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

Unified Diff: scripts/slave/recipes/chromium.py

Issue 1565113003: Add concept of bot config and test spec database (BotConfigAndTestDB). (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebased. (Probably unnecessary.) 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
« no previous file with comments | « scripts/slave/recipes/bisection/desktop_bisect.py ('k') | scripts/slave/recipes/chromium_trybot.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/chromium.py
diff --git a/scripts/slave/recipes/chromium.py b/scripts/slave/recipes/chromium.py
index 0b14c138fef5c7f28e41f50580aff27b42dd62f1..1761c54f02cd1f725971ec8308ab80d850cab330 100644
--- a/scripts/slave/recipes/chromium.py
+++ b/scripts/slave/recipes/chromium.py
@@ -51,14 +51,13 @@ def RunSteps(api):
api.bisect_tester.upload_job_url()
api.chromium_tests.configure_build(mastername, buildername)
- update_step, master_dict, test_spec = \
+ update_step, bot_db = \
api.chromium_tests.prepare_checkout(mastername, buildername)
- api.chromium_tests.compile(mastername, buildername, update_step, master_dict,
- test_spec)
+ api.chromium_tests.compile(mastername, buildername, update_step, bot_db)
api.chromium_tests.download_and_unzip_build(mastername, buildername,
- update_step, master_dict)
+ update_step, bot_db)
tests = api.chromium_tests.tests_for_builder(
- mastername, buildername, update_step, master_dict)
+ mastername, buildername, update_step, bot_db)
if not tests:
return
« no previous file with comments | « scripts/slave/recipes/bisection/desktop_bisect.py ('k') | scripts/slave/recipes/chromium_trybot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698