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

Side by Side Diff: chrome/browser/resources/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 unified diff | Download patch
« no previous file with comments | « PRESUBMIT_test.py ('k') | content/browser/frame_host/PRESUBMIT.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Presubmit script for files in chrome/browser/resources. 5 """Presubmit script for files in chrome/browser/resources.
6 6
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
8 for more details about the presubmit API built into depot_tools. 8 for more details about the presubmit API built into depot_tools.
9 """ 9 """
10 10
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 def CheckChangeOnCommit(input_api, output_api): 98 def CheckChangeOnCommit(input_api, output_api):
99 return CheckUserActionUpdate(input_api, output_api, ACTION_XML_PATH) 99 return CheckUserActionUpdate(input_api, output_api, ACTION_XML_PATH)
100 100
101 101
102 def PostUploadHook(cl, change, output_api): 102 def PostUploadHook(cl, change, output_api):
103 rietveld_obj = cl.RpcServer() 103 rietveld_obj = cl.RpcServer()
104 description = rietveld_obj.get_description(cl.issue) 104 description = rietveld_obj.get_description(cl.issue)
105 105
106 existing_bots = (change.CQ_INCLUDE_TRYBOTS or '').split(';') 106 existing_bots = (change.CQ_INCLUDE_TRYBOTS or '').split(';')
107 clean_bots = set(filter(None, map(lambda s: s.strip(), existing_bots))) 107 clean_bots = set(filter(None, map(lambda s: s.strip(), existing_bots)))
108 new_bots = clean_bots | set(['tryserver.chromium.linux:closure_compilation']) 108 new_bots = clean_bots | set(
109 ['master.tryserver.chromium.linux:closure_compilation'])
109 new_tag = 'CQ_INCLUDE_TRYBOTS=%s' % ';'.join(new_bots) 110 new_tag = 'CQ_INCLUDE_TRYBOTS=%s' % ';'.join(new_bots)
110 111
111 if clean_bots: 112 if clean_bots:
112 tag_reg = '^CQ_INCLUDE_TRYBOTS=.*$' 113 tag_reg = '^CQ_INCLUDE_TRYBOTS=.*$'
113 new_description = re.sub(tag_reg, new_tag, description, flags=re.M | re.I) 114 new_description = re.sub(tag_reg, new_tag, description, flags=re.M | re.I)
114 else: 115 else:
115 new_description = description + '\n' + new_tag 116 new_description = description + '\n' + new_tag
116 117
117 if new_description == description: 118 if new_description == description:
118 return [] 119 return []
119 120
120 rietveld_obj.update_description(cl.issue, new_description) 121 rietveld_obj.update_description(cl.issue, new_description)
121 return [output_api.PresubmitNotifyResult( 122 return [output_api.PresubmitNotifyResult(
122 'Automatically added optional Closure bots to run on CQ.')] 123 'Automatically added optional Closure bots to run on CQ.')]
OLDNEW
« no previous file with comments | « PRESUBMIT_test.py ('k') | content/browser/frame_host/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698