2018-01-22 05:10:17 +02:00
|
|
|
// Package build provides a pipe that can build binaries for several
|
|
|
|
// languages.
|
2016-12-21 15:37:31 +02:00
|
|
|
package build
|
|
|
|
|
|
|
|
import (
|
2019-04-14 20:16:01 +02:00
|
|
|
"fmt"
|
2018-01-26 23:26:28 +02:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
2017-03-26 02:29:38 +02:00
|
|
|
"path/filepath"
|
2017-01-22 00:02:51 +02:00
|
|
|
"strings"
|
2016-12-21 15:37:31 +02:00
|
|
|
|
2017-06-22 05:09:14 +02:00
|
|
|
"github.com/apex/log"
|
2018-08-15 04:50:20 +02:00
|
|
|
"github.com/goreleaser/goreleaser/internal/semerrgroup"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/tmpl"
|
|
|
|
builders "github.com/goreleaser/goreleaser/pkg/build"
|
|
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
2019-04-14 20:16:01 +02:00
|
|
|
"github.com/pkg/errors"
|
2018-01-21 18:31:08 +02:00
|
|
|
|
|
|
|
// langs to init
|
|
|
|
_ "github.com/goreleaser/goreleaser/internal/builders/golang"
|
2016-12-21 15:37:31 +02:00
|
|
|
)
|
|
|
|
|
2016-12-30 16:41:59 +02:00
|
|
|
// Pipe for build
|
2016-12-30 13:27:35 +02:00
|
|
|
type Pipe struct{}
|
|
|
|
|
2017-12-02 23:53:19 +02:00
|
|
|
func (Pipe) String() string {
|
|
|
|
return "building binaries"
|
2016-12-30 13:27:35 +02:00
|
|
|
}
|
|
|
|
|
2016-12-30 16:41:59 +02:00
|
|
|
// Run the pipe
|
2017-01-14 18:06:57 +02:00
|
|
|
func (Pipe) Run(ctx *context.Context) error {
|
2017-06-28 00:20:08 +02:00
|
|
|
for _, build := range ctx.Config.Builds {
|
2017-06-28 00:36:36 +02:00
|
|
|
log.WithField("build", build).Debug("building")
|
2017-06-28 00:20:08 +02:00
|
|
|
if err := runPipeOnBuild(ctx, build); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-12-02 23:53:19 +02:00
|
|
|
// Default sets the pipe defaults
|
|
|
|
func (Pipe) Default(ctx *context.Context) error {
|
2019-04-14 20:16:01 +02:00
|
|
|
var ids = map[string]int{}
|
2017-12-02 23:53:19 +02:00
|
|
|
for i, build := range ctx.Config.Builds {
|
|
|
|
ctx.Config.Builds[i] = buildWithDefaults(ctx, build)
|
2019-04-14 20:16:01 +02:00
|
|
|
ids[ctx.Config.Builds[i].ID]++
|
2017-12-02 23:53:19 +02:00
|
|
|
}
|
|
|
|
if len(ctx.Config.Builds) == 0 {
|
|
|
|
ctx.Config.Builds = []config.Build{
|
|
|
|
buildWithDefaults(ctx, ctx.Config.SingleBuild),
|
|
|
|
}
|
|
|
|
}
|
2019-04-14 20:16:01 +02:00
|
|
|
for id, cont := range ids {
|
|
|
|
if cont > 1 {
|
|
|
|
return fmt.Errorf("there are more than %d builds with the ID '%s', please fix your config", cont, id)
|
|
|
|
}
|
2018-10-10 18:14:12 +02:00
|
|
|
}
|
2017-12-02 23:53:19 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func buildWithDefaults(ctx *context.Context, build config.Build) config.Build {
|
2018-01-21 18:31:08 +02:00
|
|
|
if build.Lang == "" {
|
|
|
|
build.Lang = "go"
|
|
|
|
}
|
2017-12-02 23:53:19 +02:00
|
|
|
if build.Binary == "" {
|
2018-08-16 19:25:02 +02:00
|
|
|
build.Binary = ctx.Config.ProjectName
|
2017-12-02 23:53:19 +02:00
|
|
|
}
|
2019-04-14 20:16:01 +02:00
|
|
|
if build.ID == "" {
|
|
|
|
build.ID = build.Binary
|
|
|
|
}
|
2018-02-13 00:53:57 +02:00
|
|
|
for k, v := range build.Env {
|
|
|
|
build.Env[k] = os.ExpandEnv(v)
|
|
|
|
}
|
2018-01-26 23:35:12 +02:00
|
|
|
return builders.For(build.Lang).WithDefaults(build)
|
2017-12-02 23:53:19 +02:00
|
|
|
}
|
|
|
|
|
2017-06-28 00:20:08 +02:00
|
|
|
func runPipeOnBuild(ctx *context.Context, build config.Build) error {
|
2017-12-29 21:07:06 +02:00
|
|
|
if err := runHook(ctx, build.Env, build.Hooks.Pre); err != nil {
|
2017-11-18 18:14:39 +02:00
|
|
|
return errors.Wrap(err, "pre hook failed")
|
2017-03-23 19:20:24 +02:00
|
|
|
}
|
2018-07-10 06:38:00 +02:00
|
|
|
var g = semerrgroup.New(ctx.Parallelism)
|
2018-01-22 02:44:06 +02:00
|
|
|
for _, target := range build.Targets {
|
2017-04-24 19:27:21 +02:00
|
|
|
target := target
|
2017-07-01 17:27:13 +02:00
|
|
|
build := build
|
2017-04-24 19:27:21 +02:00
|
|
|
g.Go(func() error {
|
2017-07-01 17:27:13 +02:00
|
|
|
return doBuild(ctx, build, target)
|
2017-04-24 19:27:21 +02:00
|
|
|
})
|
2016-12-21 15:37:31 +02:00
|
|
|
}
|
2017-03-23 23:32:27 +02:00
|
|
|
if err := g.Wait(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-12-29 21:07:06 +02:00
|
|
|
return errors.Wrap(runHook(ctx, build.Env, build.Hooks.Post), "post hook failed")
|
2017-04-09 15:43:23 +02:00
|
|
|
}
|
|
|
|
|
2017-12-29 21:07:06 +02:00
|
|
|
func runHook(ctx *context.Context, env []string, hook string) error {
|
2017-04-09 15:43:23 +02:00
|
|
|
if hook == "" {
|
|
|
|
return nil
|
2017-03-23 19:20:24 +02:00
|
|
|
}
|
2017-06-22 15:47:34 +02:00
|
|
|
log.WithField("hook", hook).Info("running hook")
|
2017-04-09 15:43:23 +02:00
|
|
|
cmd := strings.Fields(hook)
|
2018-01-26 23:26:28 +02:00
|
|
|
return run(ctx, cmd, env)
|
2016-12-29 18:12:54 +02:00
|
|
|
}
|
|
|
|
|
2018-01-22 02:44:06 +02:00
|
|
|
func doBuild(ctx *context.Context, build config.Build, target string) error {
|
|
|
|
var ext = extFor(target)
|
2018-02-15 13:30:15 +02:00
|
|
|
|
2018-07-09 08:08:06 +02:00
|
|
|
binary, err := tmpl.New(ctx).Apply(build.Binary)
|
2018-02-15 13:30:15 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
build.Binary = binary
|
2018-01-22 02:44:06 +02:00
|
|
|
var name = build.Binary + ext
|
|
|
|
var path = filepath.Join(ctx.Config.Dist, target, name)
|
|
|
|
log.WithField("binary", path).Info("building")
|
2018-01-21 18:31:08 +02:00
|
|
|
return builders.For(build.Lang).Build(ctx, build, builders.Options{
|
|
|
|
Target: target,
|
2018-01-22 02:44:06 +02:00
|
|
|
Name: name,
|
|
|
|
Path: path,
|
2018-01-21 18:31:08 +02:00
|
|
|
Ext: ext,
|
2017-12-17 19:24:49 +02:00
|
|
|
})
|
2016-12-21 15:37:31 +02:00
|
|
|
}
|
2018-01-22 02:44:06 +02:00
|
|
|
|
|
|
|
func extFor(target string) string {
|
|
|
|
if strings.Contains(target, "windows") {
|
|
|
|
return ".exe"
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
2018-01-26 23:26:28 +02:00
|
|
|
|
|
|
|
func run(ctx *context.Context, command, env []string) error {
|
|
|
|
/* #nosec */
|
|
|
|
var cmd = exec.CommandContext(ctx, command[0], command[1:]...)
|
|
|
|
var log = log.WithField("env", env).WithField("cmd", command)
|
2019-04-09 14:15:05 +02:00
|
|
|
cmd.Env = env
|
|
|
|
log.Debug("running")
|
2018-01-26 23:26:28 +02:00
|
|
|
if out, err := cmd.CombinedOutput(); err != nil {
|
|
|
|
log.WithError(err).Debug("failed")
|
|
|
|
return errors.New(string(out))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|