2018-01-24 21:22:45 -02:00
|
|
|
// Package build provides the API for external builders
|
2018-01-21 14:31:08 -02:00
|
|
|
package build
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
|
2024-05-26 15:02:57 -03:00
|
|
|
"github.com/goreleaser/goreleaser/v2/pkg/config"
|
|
|
|
"github.com/goreleaser/goreleaser/v2/pkg/context"
|
2018-01-21 14:31:08 -02:00
|
|
|
)
|
|
|
|
|
2024-05-12 20:11:11 +03:00
|
|
|
//nolint:gochecknoglobals
|
2018-01-21 14:31:08 -02:00
|
|
|
var (
|
|
|
|
builders = map[string]Builder{}
|
|
|
|
lock sync.Mutex
|
|
|
|
)
|
|
|
|
|
2021-09-11 13:01:57 -03:00
|
|
|
// Register registers a builder to a given name.
|
|
|
|
func Register(name string, builder Builder) {
|
2018-01-21 14:31:08 -02:00
|
|
|
lock.Lock()
|
2021-09-11 13:01:57 -03:00
|
|
|
builders[name] = builder
|
2018-01-21 14:31:08 -02:00
|
|
|
lock.Unlock()
|
|
|
|
}
|
|
|
|
|
2021-09-11 13:01:57 -03:00
|
|
|
// For gets the previously registered builder for the given name.
|
|
|
|
func For(name string) Builder {
|
|
|
|
return builders[name]
|
2018-01-21 14:31:08 -02:00
|
|
|
}
|
|
|
|
|
2020-05-26 00:48:10 -03:00
|
|
|
// Options to be passed down to a builder.
|
2018-01-21 14:31:08 -02:00
|
|
|
type Options struct {
|
2022-04-11 22:43:22 -03:00
|
|
|
Name string
|
|
|
|
Path string
|
|
|
|
Ext string
|
|
|
|
Target string
|
|
|
|
Goos string
|
|
|
|
Goarch string
|
|
|
|
Goamd64 string
|
|
|
|
Goarm string
|
|
|
|
Gomips string
|
2018-01-21 14:31:08 -02:00
|
|
|
}
|
|
|
|
|
2020-05-26 00:48:10 -03:00
|
|
|
// Builder defines a builder.
|
2018-01-21 14:31:08 -02:00
|
|
|
type Builder interface {
|
2020-11-05 04:20:14 -03:00
|
|
|
WithDefaults(build config.Build) (config.Build, error)
|
2018-01-21 14:31:08 -02:00
|
|
|
Build(ctx *context.Context, build config.Build, options Options) error
|
|
|
|
}
|