1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-07 01:07:10 +02:00
Files
goreleaser/pkg/build/build.go
Carlos Alexandro Becker 69c8a502db chore(deps): bump github.com/golangci/golangci-lint from 1.23.7 to 1.27.0 (#1563)
* chore(deps): bump github.com/golangci/golangci-lint from 1.23.7 to 1.27.0

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: tests

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
2020-05-26 00:48:10 -03:00

39 lines
830 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
}