Documentation ¶
Index ¶
Constants ¶
View Source
const ( // RefMain is the ref name for the main branch. RefMain = git.DefaultRef )
Variables ¶
This section is empty.
Functions ¶
func ReleaseBranchRef ¶
ReleaseBranchRef returns the fully-qualified ref for the release branch with the given number.
Types ¶
type Branch ¶
type Branch struct { // Milestone number for this branch. Milestone int `json:"milestone"` // Branch number for this branch. Always zero for the main branch, because // numbered release candidates are cut from this branch regularly and there // is no single number which refers to it. Number int `json:"number"` // Fully-qualified ref for this branch. Ref string `json:"ref"` // Corresponding V8 ref (calculated) V8Branch string }
Branch describes a single Chrome release branch.
type Branches ¶
type Branches struct { Main *Branch `json:"main"` Dev *Branch `json:"dev"` Beta *Branch `json:"beta"` Stable *Branch `json:"stable"` }
Branches describes the mapping from Chrome release channel name to branch number.
Click to show internal directories.
Click to hide internal directories.