1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +02:00
goreleaser/pkg/build/build.go
Carlos Alexandro Becker 6c349c1759 fix: linter fixes
2018-11-08 09:40:23 -02:00

39 lines
826 B
Go

// Package build provides the API for external builders
package build
import (
"sync"
"github.com/goreleaser/goreleaser/pkg/config"
"github.com/goreleaser/goreleaser/pkg/context"
)
// nolint: gochecknoglobals
var (
builders = map[string]Builder{}
lock sync.Mutex
)
// Register registers a builder to a given lang
func Register(lang string, builder Builder) {
lock.Lock()
builders[lang] = builder
lock.Unlock()
}
// For gets the previously registered builder for the given lang
func For(lang string) Builder {
return builders[lang]
}
// Options to be passed down to a builder
type Options struct {
Name, Path, Ext, Target string
}
// Builder defines a builder
type Builder interface {
WithDefaults(build config.Build) config.Build
Build(ctx *context.Context, build config.Build, options Options) error
}