Home
last modified time | relevance | path

Searched refs:git_hash (Results 1 – 9 of 9) sorted by relevance

/external/v8/tools/release/
Dgit_recipes.py145 def GitChangedFiles(self, git_hash, **kwargs): argument
146 assert git_hash
149 git_hash,
150 "%s^" % git_hash]), **kwargs)
165 def GitLog(self, n=0, format="", grep="", git_hash="", parent_hash="", argument
167 assert not (git_hash and parent_hash)
177 if git_hash:
178 args.append(git_hash)
191 def GitGetPatch(self, git_hash, **kwargs): argument
192 assert git_hash
[all …]
Dreleases.py165 self, git_hash, master_position, master_hash, branch, version, argument
167 revision = self.GetCommitPositionNumber(git_hash)
172 "revision_git": git_hash,
182 "date": self.GitLog(n=1, format="%ci", git_hash=git_hash),
197 def GetRelease(self, git_hash, branch): argument
201 body = self.GitLog(n=1, format="%B", git_hash=git_hash)
216 title = self.GitLog(n=1, format="%s", git_hash=git_hash)
222 git_hash, master_position, master_hash, branch, version,
232 for git_hash in self.GitLog(format="%H").splitlines():
233 if VERSION_FILE not in self.GitChangedFiles(git_hash):
[all …]
Dmerge_to_branch.py79 for git_hash in git_hashes.splitlines():
80 revision_title = self.GitLog(n=1, format="%s", git_hash=git_hash)
83 if git_hash in self["full_revision_list"]:
85 % (revision, git_hash, revision_title))
88 % (revision, git_hash, revision_title))
89 port_revision_list.append(git_hash)
119 patch_merge_desc = self.GitLog(n=1, format="%s", git_hash=commit_hash)
124 msg = self.GitLog(n=1, git_hash=commit_hash)
Dauto_tag.py46 for git_hash in self.GitLog(
50 if not self.GitCheckoutFileSafe(VERSION_FILE, git_hash):
79 self["candidate"] = git_hash
138 lkgr_utc_time = int(self.GitLog(n=1, format="%at", git_hash=self["lkgr"]))
Dpush_to_candidates.py70 self["push_hash"] = self.GitLog(n=1, format="%H", git_hash="HEAD")
145 git_hash="%s..%s" % (self["last_push_master"],
151 self.GitLog(n=1, format="%s", git_hash=commit),
152 self.Reload(self.GitLog(n=1, format="%B", git_hash=commit)),
153 self.GitLog(n=1, format="%an", git_hash=commit),
Dcreate_release.py109 git_hash="%s..%s" % (self["last_push_master"],
115 self.GitLog(n=1, format="%s", git_hash=commit),
116 self.Reload(self.GitLog(n=1, format="%B", git_hash=commit)),
117 self.GitLog(n=1, format="%an", git_hash=commit),
Dauto_push.py63 format="%H", git_hash="%s..%s" % (last_release, self["candidate"]))
Dauto_roll.py94 git_hash=self["roll"])
Dcommon_includes.py690 title = self.GitLog(n=1, format="%s", git_hash=latest_hash)
702 return self.GitLog(n=1, format="%H", git_hash="%s^" % latest_hash)