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

Unified Diff: PRESUBMIT.py

Issue 2148053002: PRESUBMIT: use "master." prefix in CQ_INCLUDE_TRYBOTS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: 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 | PRESUBMIT_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index d60a19cccd0d687f102d1be589593b36cae4421e..8a47288525d8ab3c8fe4dcfc4585e9f4351f3594 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -2182,19 +2182,19 @@ def GetTryServerMasterForBot(bot):
"""
# Potentially ambiguous bot names are listed explicitly.
master_map = {
- 'chromium_presubmit': 'tryserver.chromium.linux',
- 'tools_build_presubmit': 'tryserver.chromium.linux',
+ 'chromium_presubmit': 'master.tryserver.chromium.linux',
+ 'tools_build_presubmit': 'master.tryserver.chromium.linux',
}
master = master_map.get(bot)
if not master:
if 'android' in bot:
- master = 'tryserver.chromium.android'
+ master = 'master.tryserver.chromium.android'
elif 'linux' in bot or 'presubmit' in bot:
- master = 'tryserver.chromium.linux'
+ master = 'master.tryserver.chromium.linux'
elif 'win' in bot:
- master = 'tryserver.chromium.win'
+ master = 'master.tryserver.chromium.win'
elif 'mac' in bot or 'ios' in bot:
- master = 'tryserver.chromium.mac'
+ master = 'master.tryserver.chromium.mac'
return master
« no previous file with comments | « no previous file | PRESUBMIT_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698