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

Unified Diff: PRESUBMIT.py

Issue 963553002: Automatically add NOTREECHECKS when uploading CLs from non master branches (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Addressing comments Created 5 years, 10 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 | no next file » | 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 75f930619f9f6aee31b329f92f8a81361487d635..a4d90c8a8e88d1fec2dad3af6fe2e7472e3a396b 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -248,6 +248,10 @@ def PostUploadHook(cl, change, output_api):
This hook does the following:
* Adds a link to preview docs changes if there are any docs changes in the CL.
* Adds 'NOTRY=true' if the CL contains only docs changes.
+ * Adds 'NOTREECHECKS=true' for non master branch changes since they do not
+ need to be gated on the master branch's tree.
+ * Adds 'NOTRY=true' for non master branch changes since trybots do not yet
+ work on them.
"""
results = []
@@ -272,7 +276,7 @@ def PostUploadHook(cl, change, output_api):
# If the change includes only doc changes then add NOTRY=true in the
# CL's description if it does not exist yet.
if all_docs_changes and not re.search(
- r'^NOTRY=true$', original_description, re.M | re.I):
+ r'^NOTRY=true$', new_description, re.M | re.I):
new_description += '\nNOTRY=true'
results.append(
output_api.PresubmitNotifyResult(
@@ -282,7 +286,7 @@ def PostUploadHook(cl, change, output_api):
# If there is atleast one docs change then add preview link in the CL's
# description if it does not already exist there.
if atleast_one_docs_change and not re.search(
- r'^DOCS_PREVIEW=.*', original_description, re.M | re.I):
+ r'^DOCS_PREVIEW=.*', new_description, re.M | re.I):
# Automatically add a link to where the docs can be previewed.
new_description += '\nDOCS_PREVIEW= %s%s' % (DOCS_PREVIEW_URL, issue)
results.append(
@@ -290,6 +294,28 @@ def PostUploadHook(cl, change, output_api):
'Automatically added a link to preview the docs changes to the '
'CL\'s description'))
+ # If the target ref is not master then add NOTREECHECKS=true and NOTRY=true
+ # to the CL's description if it does not already exist there.
+ target_ref = rietveld_obj.get_issue_properties(issue, False).get(
+ 'target_ref', '')
+ if target_ref != 'refs/heads/master':
+ if not re.search(
+ r'^NOTREECHECKS=true$', new_description, re.M | re.I):
+ new_description += "\nNOTREECHECKS=true"
+ results.append(
+ output_api.PresubmitNotifyResult(
+ 'Branch changes do not need to rely on the master branch\'s '
+ 'tree status. Automatically added \'NOTREECHECKS=true\' to the '
+ 'CL\'s description'))
+ if not re.search(
+ r'^NOTRY=true$', new_description, re.M | re.I):
+ new_description += "\nNOTRY=true"
+ results.append(
+ output_api.PresubmitNotifyResult(
+ 'Trybots do not yet work for non-master branches. '
+ 'Automatically added \'NOTRY=true\' to the CL\'s description'))
+
+
# If the description has changed update it.
if new_description != original_description:
rietveld_obj.update_description(issue, new_description)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698