1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/internal/pipe/git/git.go

131 lines
3.0 KiB
Go
Raw Normal View History

2017-01-14 16:34:22 +02:00
package git
2017-01-30 01:55:32 +02:00
import (
"os/exec"
2017-01-30 01:55:32 +02:00
"strings"
2017-06-22 05:09:14 +02:00
"github.com/apex/log"
2017-08-19 17:47:04 +02:00
"github.com/goreleaser/goreleaser/internal/git"
2018-09-12 19:18:01 +02:00
"github.com/goreleaser/goreleaser/internal/pipe"
"github.com/goreleaser/goreleaser/pkg/context"
"github.com/pkg/errors"
2017-01-30 01:55:32 +02:00
)
2017-01-14 16:34:22 +02:00
2018-11-25 21:30:30 +02:00
// Pipe that sets up git state
2017-01-14 16:34:22 +02:00
type Pipe struct{}
func (Pipe) String() string {
return "getting and validating git state"
2017-01-14 16:34:22 +02:00
}
// Run the pipe
func (Pipe) Run(ctx *context.Context) error {
if _, err := exec.LookPath("git"); err != nil {
return ErrNoGit
}
info, err := getInfo(ctx)
2017-01-14 16:34:22 +02:00
if err != nil {
return err
2017-01-14 16:34:22 +02:00
}
ctx.Git = info
log.Infof("releasing %s, commit %s", info.CurrentTag, info.Commit)
2018-12-13 14:09:36 +02:00
ctx.Version = strings.TrimPrefix(ctx.Git.CurrentTag, "v")
return validate(ctx)
}
2018-11-08 02:04:49 +02:00
// nolint: gochecknoglobals
var fakeInfo = context.GitInfo{
2018-10-03 22:44:31 +02:00
CurrentTag: "v0.0.0",
Commit: "none",
ShortCommit: "none",
FullCommit: "none",
}
func getInfo(ctx *context.Context) (context.GitInfo, error) {
if !git.IsRepo() && ctx.Snapshot {
log.Warn("accepting to run without a git repo because this is a snapshot")
return fakeInfo, nil
}
if !git.IsRepo() {
return context.GitInfo{}, ErrNotRepository
}
2019-01-19 22:05:15 +02:00
info, err := getGitInfo()
if err != nil && ctx.Snapshot {
log.WithError(err).Warn("ignoring errors because this is a snapshot")
if info.Commit == "" {
info = fakeInfo
}
return info, nil
}
return info, err
}
2019-01-19 22:05:15 +02:00
func getGitInfo() (context.GitInfo, error) {
2018-10-03 22:44:31 +02:00
short, err := getShortCommit()
if err != nil {
return context.GitInfo{}, errors.Wrap(err, "couldn't get current commit")
}
full, err := getFullCommit()
if err != nil {
return context.GitInfo{}, errors.Wrap(err, "couldn't get current commit")
2017-01-14 18:06:57 +02:00
}
url, err := getURL()
if err != nil {
return context.GitInfo{}, errors.Wrap(err, "couldn't get remote URL")
}
tag, err := getTag()
if err != nil {
return context.GitInfo{
Commit: full,
2018-10-03 22:44:31 +02:00
FullCommit: full,
ShortCommit: short,
URL: url,
2018-10-03 22:44:31 +02:00
CurrentTag: "v0.0.0",
}, ErrNoTag
2017-05-01 15:39:57 +02:00
}
return context.GitInfo{
2018-10-03 22:44:31 +02:00
CurrentTag: tag,
Commit: full,
2018-10-03 22:44:31 +02:00
FullCommit: full,
ShortCommit: short,
URL: url,
}, nil
2017-05-01 15:39:57 +02:00
}
func validate(ctx *context.Context) error {
if ctx.Snapshot {
2018-09-12 19:18:01 +02:00
return pipe.ErrSnapshotEnabled
2018-03-08 13:42:33 +02:00
}
if ctx.SkipValidate {
2018-09-12 19:18:01 +02:00
return pipe.ErrSkipValidateEnabled
}
2017-08-19 17:47:04 +02:00
out, err := git.Run("status", "--porcelain")
2017-04-15 21:11:47 +02:00
if strings.TrimSpace(out) != "" || err != nil {
2018-06-19 20:53:14 +02:00
return ErrDirty{status: out}
2017-04-15 21:11:47 +02:00
}
_, err = git.Clean(git.Run("describe", "--exact-match", "--tags", "--match", ctx.Git.CurrentTag))
2017-05-01 15:57:37 +02:00
if err != nil {
2018-06-19 20:53:14 +02:00
return ErrWrongRef{
commit: ctx.Git.Commit,
tag: ctx.Git.CurrentTag,
}
2017-04-15 21:11:47 +02:00
}
return nil
2017-01-14 16:34:22 +02:00
}
2018-10-03 22:44:31 +02:00
func getShortCommit() (string, error) {
2019-02-06 21:51:09 +02:00
return git.Clean(git.Run("show", "--format='%h'", "HEAD", "-q"))
2018-10-03 22:44:31 +02:00
}
func getFullCommit() (string, error) {
2019-02-06 21:51:09 +02:00
return git.Clean(git.Run("show", "--format='%H'", "HEAD", "-q"))
}
func getTag() (string, error) {
return git.Clean(git.Run("describe", "--tags", "--abbrev=0"))
2017-04-23 21:33:44 +02:00
}
func getURL() (string, error) {
return git.Clean(git.Run("ls-remote", "--get-url"))
}