aboutsummaryrefslogtreecommitdiff
path: root/llvm_tools
diff options
context:
space:
mode:
authorManoj Gupta <manojgupta@google.com>2020-02-28 11:15:31 -0800
committerManoj Gupta <manojgupta@chromium.org>2020-02-28 21:07:46 +0000
commitd49520813fd5f67c65cbcd7de555e07a06101185 (patch)
treeafd1b1be135226c3994295cfd6918f146329a3d2 /llvm_tools
parentc3bb0cbac10890324c5004fd6d7819102a2e6995 (diff)
downloadtoolchain-utils-d49520813fd5f67c65cbcd7de555e07a06101185.tar.gz
llvm_tools: Uploaded CL as WIP and do not send emails.
Mark CL as wip and do not send emails to avoid unnecessary email churns for people monitoring the changes. BUG=None TEST=CL uploaded as wip and with no emails sent. Change-Id: I8577fb8a149b5511bc27df2a7e79901b1c778721 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/2080652 Tested-by: Manoj Gupta <manojgupta@chromium.org> Reviewed-by: Jian Cai <jiancai@google.com> Reviewed-by: George Burgess <gbiv@chromium.org> Commit-Queue: Manoj Gupta <manojgupta@chromium.org>
Diffstat (limited to 'llvm_tools')
-rwxr-xr-xllvm_tools/update_chromeos_llvm_next_hash.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm_tools/update_chromeos_llvm_next_hash.py b/llvm_tools/update_chromeos_llvm_next_hash.py
index d47da46d..955ebff7 100755
--- a/llvm_tools/update_chromeos_llvm_next_hash.py
+++ b/llvm_tools/update_chromeos_llvm_next_hash.py
@@ -455,7 +455,8 @@ def UploadChanges(path_to_repo_dir, llvm_hash, commit_messages):
# Upload the changes for review.
upload_change_cmd = (
- 'yes | repo upload --br=llvm-next-update-%s --no-verify' % llvm_hash)
+ 'yes | repo upload --wip --ne --br=llvm-next-update-%s --no-verify' %
+ llvm_hash)
# Pylint currently doesn't lint things in py3 mode, and py2 didn't allow
# users to specify `encoding`s for Popen. Hence, pylint is "wrong" here.