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

Unified Diff: tools/release/mergeinfo.py

Issue 1391153002: [Release] Remove usage of roll ref (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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 | tools/release/test_mergeinfo.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/release/mergeinfo.py
diff --git a/tools/release/mergeinfo.py b/tools/release/mergeinfo.py
index b7fedbcc80ab168e729a06fcc9aa06f7fcbd42f8..7f8b9cbaf4cca19cf7597ad89fb06993e3791fd0 100755
--- a/tools/release/mergeinfo.py
+++ b/tools/release/mergeinfo.py
@@ -57,10 +57,6 @@ def get_branches_for_commit(git_working_dir, hash_to_search):
branches = branches.splitlines()
return map(str.strip, branches)
-def is_rolling(git_working_dir, hash_to_search):
- branches = get_branches_for_commit(git_working_dir, hash_to_search)
- return 'remotes/origin/roll' in branches
-
def is_lkgr(git_working_dir, hash_to_search):
branches = get_branches_for_commit(git_working_dir, hash_to_search)
return 'remotes/origin/lkgr' in branches
@@ -79,9 +75,7 @@ def print_analysis(git_working_dir, hash_to_search):
print '=====================ORIGINAL COMMIT START==================='
print describe_commit(git_working_dir, hash_to_search)
print '=====================ORIGINAL COMMIT END====================='
-
print '2.) General information:'
- print 'Is rolling: ' + str(is_rolling(git_working_dir, hash_to_search))
print 'Is LKGR: ' + str(is_lkgr(git_working_dir, hash_to_search))
print 'Is on Canary: ' + (
str(get_first_canary(git_working_dir, hash_to_search)))
« no previous file with comments | « no previous file | tools/release/test_mergeinfo.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698