mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
86 lines
1.9 KiB
Go
86 lines
1.9 KiB
Go
// Package context provides gorelease context which is passed through the
|
|
// pipeline.
|
|
//
|
|
// The context extends the standard library context and add a few more
|
|
// fields and other things, so pipes can gather data provided by previous
|
|
// pipes without really knowing each other.
|
|
package context
|
|
|
|
import (
|
|
ctx "context"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/apex/log"
|
|
"github.com/goreleaser/goreleaser/config"
|
|
)
|
|
|
|
// GitInfo includes tags and diffs used in some point
|
|
type GitInfo struct {
|
|
CurrentTag string
|
|
Commit string
|
|
}
|
|
|
|
// Binary with pretty name and path
|
|
type Binary struct {
|
|
Name, Path string
|
|
}
|
|
|
|
// Context carries along some data through the pipes
|
|
type Context struct {
|
|
ctx.Context
|
|
Config config.Project
|
|
Token string
|
|
Git GitInfo
|
|
Binaries map[string]map[string][]Binary
|
|
Artifacts []string
|
|
ReleaseNotes string
|
|
Version string
|
|
Validate bool
|
|
Publish bool
|
|
Snapshot bool
|
|
RmDist bool
|
|
}
|
|
|
|
var artifactsLock sync.Mutex
|
|
var binariesLock sync.Mutex
|
|
|
|
// AddArtifact adds a file to upload list
|
|
func (ctx *Context) AddArtifact(file string) {
|
|
artifactsLock.Lock()
|
|
defer artifactsLock.Unlock()
|
|
file = strings.TrimPrefix(file, ctx.Config.Dist+"/")
|
|
ctx.Artifacts = append(ctx.Artifacts, file)
|
|
log.WithField("artifact", file).Info("new artifact")
|
|
}
|
|
|
|
// AddBinary adds a built binary to the current context
|
|
func (ctx *Context) AddBinary(key, group, name, path string) {
|
|
binariesLock.Lock()
|
|
defer binariesLock.Unlock()
|
|
if ctx.Binaries[key] == nil {
|
|
ctx.Binaries[key] = map[string][]Binary{}
|
|
}
|
|
ctx.Binaries[key][group] = append(
|
|
ctx.Binaries[key][group],
|
|
Binary{
|
|
Name: name,
|
|
Path: path,
|
|
},
|
|
)
|
|
log.WithField("key", key).
|
|
WithField("group", group).
|
|
WithField("name", name).
|
|
WithField("path", path).
|
|
Info("new binary")
|
|
}
|
|
|
|
// New context
|
|
func New(config config.Project) *Context {
|
|
return &Context{
|
|
Context: ctx.Background(),
|
|
Config: config,
|
|
Binaries: map[string]map[string][]Binary{},
|
|
}
|
|
}
|