diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-12 03:05:04 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-12 03:05:04 +0000 |
commit | 4ddc5df971ed3d2965ffeab580706710e5981c03 (patch) | |
tree | c61f4101ea371fc42b2426bff20df8390eab72a4 /PRESUBMIT.py | |
parent | 822b56802b9a6649f13d8f0ab4abf365e3421472 (diff) | |
download | chromium_src-4ddc5df971ed3d2965ffeab580706710e5981c03.zip chromium_src-4ddc5df971ed3d2965ffeab580706710e5981c03.tar.gz chromium_src-4ddc5df971ed3d2965ffeab580706710e5981c03.tar.bz2 |
Switch the default `git try` / `gcl try` bots to _rel.
That matches the CQ bots, and they're significantly faster.
The global trybots are added to all subdirectory PRESUBMITs automatically, so remove win, linux, mac from subdirectory PRESUBMITs (instead of changing them too).
BUG=99521
TEST=`git try` creates faster tryjobs.
TBR=willchan (net), akalin (sync)
Review URL: http://codereview.chromium.org/8162009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113979 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 074e960..aa81d30 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'] |