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

Unified Diff: tools/buildbot_spec.py

Issue 2154433002: Add "Infra" to the builder_name_schema (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add "Infra" to the builder_name_schema Created 4 years, 5 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 | « no previous file | tools/builder_name_schema.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/buildbot_spec.py
diff --git a/tools/buildbot_spec.py b/tools/buildbot_spec.py
index 6ef62395a4c5b074f5cba4bc5c561df5c9476352..ddaebccc5878e8420a01bc122554607b05c50047 100755
--- a/tools/buildbot_spec.py
+++ b/tools/buildbot_spec.py
@@ -45,7 +45,8 @@ def gyp_defines(builder_dict):
# skia_arch_type.
if builder_dict['role'] == builder_name_schema.BUILDER_ROLE_BUILD:
arch = builder_dict['target_arch']
- elif builder_dict['role'] == builder_name_schema.BUILDER_ROLE_HOUSEKEEPER:
+ elif builder_dict['role'] in (builder_name_schema.BUILDER_ROLE_HOUSEKEEPER,
+ builder_name_schema.BUILDER_ROLE_INFRA):
arch = None
else:
arch = builder_dict['arch']
« no previous file with comments | « no previous file | tools/builder_name_schema.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698