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

Unified Diff: tools/release/auto_push.py

Issue 1394453002: [release] Roll the more frequently updated lkgr ref into chromium. (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_scripts.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/release/auto_push.py
diff --git a/tools/release/auto_push.py b/tools/release/auto_push.py
index aba5cba72a717625c4d6f58ddc45f66efe730c43..ca9e5e87347aeb255584e18b38f0f5baad3f6a26 100755
--- a/tools/release/auto_push.py
+++ b/tools/release/auto_push.py
@@ -46,12 +46,12 @@ class Preparation(Step):
class FetchCandidate(Step):
- MESSAGE = "Fetching V8 roll ref."
+ MESSAGE = "Fetching V8 lkgr ref."
def RunStep(self):
# The roll ref points to the candidate to be rolled.
- self.Git("fetch origin +refs/heads/roll:refs/heads/roll")
- self["candidate"] = self.Git("show-ref -s refs/heads/roll").strip()
+ self.Git("fetch origin +refs/heads/lkgr:refs/heads/lkgr")
+ self["candidate"] = self.Git("show-ref -s refs/heads/lkgr").strip()
class LastReleaseBailout(Step):
« no previous file with comments | « no previous file | tools/release/test_scripts.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698