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

Unified Diff: PRESUBMIT.py

Issue 8162009: Switch the default `git try` / `gcl try` bots to _rel. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 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 | « no previous file | base/PRESUBMIT.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 074e9606a2c59e3406032b19db6ae593cfd99941..aa81d30ec970d1707234f1ca52338c35ca1123b3 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -317,8 +317,8 @@ def CheckChangeOnCommit(input_api, output_api):
output_api,
json_url='http://chromium-status.appspot.com/current?format=json'))
results.extend(input_api.canned_checks.CheckRietveldTryJobExecution(input_api,
- output_api, 'http://codereview.chromium.org', ('win', 'linux', 'mac'),
- 'tryserver@chromium.org'))
+ output_api, 'http://codereview.chromium.org',
+ ('win_rel', 'linux_rel', 'mac_rel'), 'tryserver@chromium.org'))
results.extend(input_api.canned_checks.CheckChangeHasBugField(
input_api, output_api))
@@ -334,5 +334,5 @@ def GetPreferredTrySlaves(project, change):
only_objc_files = all(
f.LocalPath().endswith(('.mm', '.m')) for f in change.AffectedFiles())
if only_objc_files:
- return ['mac']
- return ['win', 'linux', 'mac']
+ return ['mac_rel']
+ return ['win_rel', 'linux_rel', 'mac_rel']
« no previous file with comments | « no previous file | base/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698