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

Unified Diff: git_cl.py

Issue 10963013: Do not enforce HEAD when a revision is not specified. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 8 years, 3 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 | rietveld.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index 29ee421acc431bcaa380eed0ef84c8bed1f7d5b0..f884eaa6c655afe2b42d1c9ba67e49e8aca953fc 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1598,6 +1598,10 @@ def CMDtry(parser, args):
cl.RpcServer().trigger_try_jobs(
cl.GetIssue(), patchset, options.name, options.clobber, options.revision,
builders_and_tests)
+ print('Tried jobs on:')
+ length = max(len(builder) for builder in builders_and_tests)
+ for builder in sorted(builders_and_tests):
+ print ' %*s: %s' % (length, builder, ','.join(builders_and_tests[builder]))
return 0
« no previous file with comments | « no previous file | rietveld.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698