1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-04 22:14:28 +02:00
Carlos Alexandro Becker bf9f0e0b14
Revert "avoid cd-ing in tests"
This reverts commit 36efad3f788bf069c568597f731cfab0e1a0e0a0.
2017-04-15 14:00:49 -03:00

78 lines
1.7 KiB
Go

// Package git implements the Pipe interface extracting usefull data from
// git and putting it in the context.
package git
import (
"regexp"
"strings"
"github.com/goreleaser/goreleaser/context"
)
// ErrInvalidVersionFormat is return when the version isnt in a valid format
type ErrInvalidVersionFormat struct {
version string
}
func (e ErrInvalidVersionFormat) Error() string {
return e.version + " is not in a valid version format"
}
// Pipe for brew deployment
type Pipe struct{}
// Description of the pipe
func (Pipe) Description() string {
return "Getting Git info"
}
// Run the pipe
func (Pipe) Run(ctx *context.Context) (err error) {
tag, err := cleanGit("describe", "--tags", "--abbrev=0", "--always")
if err != nil {
return
}
prev, err := previous(tag)
if err != nil {
return
}
log, err := git("log", "--pretty=oneline", "--abbrev-commit", prev+".."+tag)
if err != nil {
return
}
ctx.Git = context.GitInfo{
CurrentTag: tag,
PreviousTag: prev,
Diff: log,
}
// removes usual `v` prefix
ctx.Version = strings.TrimPrefix(tag, "v")
if versionErr := isVersionValid(ctx.Version); versionErr != nil {
return versionErr
}
commit, err := cleanGit("show", "--format='%H'", "HEAD")
if err != nil {
return
}
ctx.Git.Commit = commit
return
}
func previous(tag string) (previous string, err error) {
previous, err = cleanGit("describe", "--tags", "--abbrev=0", "--always", tag+"^")
if err != nil {
previous, err = cleanGit("rev-list", "--max-parents=0", "HEAD")
}
return
}
func isVersionValid(version string) error {
matches, err := regexp.MatchString("^[0-9.]+", version)
if err != nil || !matches {
return ErrInvalidVersionFormat{version}
}
return nil
}