Commit f1b1bbcc authored by Andrii Shyshkalov's avatar Andrii Shyshkalov Committed by Commit Bot

Specify -B <bucket> where to trigger optional tryjobs.

TEST:

$ git cl try -B luci.chromium.try -b linux_upload_clang -b mac_upload_clang -b win_upload_clang -r 001fe5f6
Tried jobs on:
Bucket: luci.chromium.try
  linux_upload_clang: []
  mac_upload_clang: []
  win_upload_clang: []
To see results here, run:        git cl try-results
To see results in browser, run:  git cl web

$ git cl try-results
Scheduled:
  linux_upload_clang    id=8902494487098015248
  mac_upload_clang      id=8902494452269498288
  win_upload_clang      id=8902494452269498272


Bug: 1001522
Change-Id: Ifb37d81b883575e8575f6cdc7cb5f8b8c6a0dda7
No-Try: True
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1801923
Commit-Queue: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#696140}
parent 9ce7505a
...@@ -85,9 +85,11 @@ def main(): ...@@ -85,9 +85,11 @@ def main():
clang_old_revision, clang_svn_revision, commit_message)]) clang_old_revision, clang_svn_revision, commit_message)])
Git(["cl", "upload", "-f", "--bypass-hooks"]) Git(["cl", "upload", "-f", "--bypass-hooks"])
Git(["cl", "try", "-b", "linux_upload_clang", "-r", git_revision]) Git(["cl", "try", "-B", "luci.chromium.try",
Git(["cl", "try", "-b", "mac_upload_clang", "-r", git_revision]) "-b", "linux_upload_clang",
Git(["cl", "try", "-b", "win_upload_clang", "-r", git_revision]) "-b", "mac_upload_clang",
"-b", "win_upload_clang",
"-r", git_revision])
print ("Please, wait until the try bots succeeded " print ("Please, wait until the try bots succeeded "
"and then push the binaries to goma.") "and then push the binaries to goma.")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment