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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/trybots.py

Issue 1554383003: Add support for "additional_mirrors" property in trybot configs. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 12 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/chromium_tests/trybots.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/trybots.py b/scripts/slave/recipe_modules/chromium_tests/trybots.py
index 94ba4593e404ddfda9979eb98bec1349384bffa5..e0b00aa8827cfef8af222dad5dcc620ce2d22daa 100644
--- a/scripts/slave/recipe_modules/chromium_tests/trybots.py
+++ b/scripts/slave/recipe_modules/chromium_tests/trybots.py
@@ -267,6 +267,16 @@ TRYBOTS = freeze({
'mastername': 'chromium.linux',
'buildername': 'Linux Builder',
'tester': 'Linux Tests',
+ # TODO(kbr): add this to the other trybots that run GPU tests.
+ # This is only being added now in order to achieve full code
+ # coverage in the recipes.
+ 'additional_mirrors': [
Sergey Berezin 2016/01/06 01:50:56 nit on the design: it might make sense to generali
Ken Russell (switch to Gerrit) 2016/01/06 03:30:07 That's certainly feasible. I don't know whether it
Sergey Berezin 2016/01/06 19:12:35 To be clear, what I'm proposing is backward-compat
+ {
+ 'mastername': 'chromium.gpu',
+ 'buildername': 'GPU Linux Builder',
+ 'tester': 'Linux Release (NVIDIA)',
+ },
+ ],
},
'linux_chromium_asan_rel_ng': {
'mastername': 'chromium.memory',

Powered by Google App Engine
This is Rietveld 408576698