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

Unified Diff: scripts/master/recipe_master_helper.py

Issue 1550223002: Added new slaves and spec files for GPU FYI bots running Chromium recipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Added sentinel for bots using recipe-side triggers. Created 5 years 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 | « masters/master.chromium.gpu.fyi/slaves.cfg ('k') | scripts/slave/recipe_modules/chromium_tests/builders.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/master/recipe_master_helper.py
diff --git a/scripts/master/recipe_master_helper.py b/scripts/master/recipe_master_helper.py
index fbfe9c0666e0d76860a52fe5b52a181b05539e8c..25f9bc3246ff786ddf4505390ebc2b4d7485266d 100644
--- a/scripts/master/recipe_master_helper.py
+++ b/scripts/master/recipe_master_helper.py
@@ -50,7 +50,10 @@ def AddSchedulersAndTriggers(buildmaster_config=None,
for slave in slave_list.slaves:
builder = slave['builder']
parent_builder = slave.get('triggered_by')
- if parent_builder is not None:
+ if parent_builder == 'none':
+ # Uses recipe-side triggers. Don't add to trigger maps.
+ pass
+ elif parent_builder is not None:
if slave_list.GetSlave(builder=parent_builder) is None:
raise Exception('Could not find parent builder %s for builder %s' %
(parent_builder, builder))
« no previous file with comments | « masters/master.chromium.gpu.fyi/slaves.cfg ('k') | scripts/slave/recipe_modules/chromium_tests/builders.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698