1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/pipeline/build/build.go

83 lines
1.8 KiB
Go
Raw Normal View History

2016-12-21 15:37:31 +02:00
package build
import (
"bytes"
2016-12-29 18:12:54 +02:00
"errors"
2016-12-30 13:27:35 +02:00
"log"
2016-12-21 18:42:23 +02:00
"os"
2016-12-21 15:37:31 +02:00
"os/exec"
"strings"
2016-12-21 15:37:31 +02:00
2017-01-15 00:01:32 +02:00
"github.com/goreleaser/goreleaser/context"
2016-12-29 18:12:54 +02:00
"golang.org/x/sync/errgroup"
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-01-14 20:41:32 +02:00
// Description of the pipe
2017-01-14 19:14:35 +02:00
func (Pipe) Description() string {
2017-01-19 11:04:41 +02:00
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 {
2016-12-29 18:12:54 +02:00
var g errgroup.Group
for _, goos := range ctx.Config.Build.Goos {
for _, goarch := range ctx.Config.Build.Goarch {
2017-01-14 19:08:10 +02:00
goos := goos
goarch := goarch
name, err := nameFor(ctx, goos, goarch)
2017-01-14 16:34:22 +02:00
if err != nil {
return err
}
2017-01-14 19:08:10 +02:00
ctx.Archives[goos+goarch] = name
2016-12-29 18:12:54 +02:00
g.Go(func() error {
2017-01-14 19:08:10 +02:00
return build(name, goos, goarch, ctx)
2016-12-29 18:12:54 +02:00
})
2016-12-21 15:37:31 +02:00
}
}
2016-12-29 18:12:54 +02:00
return g.Wait()
}
2017-01-14 19:08:10 +02:00
func build(name, goos, goarch string, ctx *context.Context) error {
2017-01-14 18:06:57 +02:00
ldflags := ctx.Config.Build.Ldflags + " -X main.version=" + ctx.Git.CurrentTag
output := "dist/" + name + "/" + ctx.Config.Build.BinaryName + extFor(goos)
2017-01-19 11:04:41 +02:00
log.Println("Building", output)
if ctx.Config.Build.Hooks.Pre != "" {
cmd := strings.Split(ctx.Config.Build.Hooks.Pre, " ")
if err := run(goos, goarch, cmd); err != nil {
return err
}
}
cmd := []string{"go", "build", "-ldflags=" + ldflags, "-o", output, ctx.Config.Build.Main}
if err := run(goos, goarch, cmd); err != nil {
return err
}
if ctx.Config.Build.Hooks.Post != "" {
cmd := strings.Split(ctx.Config.Build.Hooks.Post, " ")
if err := run(goos, goarch, cmd); err != nil {
return err
}
}
return nil
}
func run(goos, goarch string, command []string) error {
cmd := exec.Command(command[0], command[1:]...)
2016-12-29 18:12:54 +02:00
cmd.Env = append(
cmd.Env,
2017-01-14 19:08:10 +02:00
"GOOS="+goos,
"GOARCH="+goarch,
2016-12-29 18:12:54 +02:00
"GOROOT="+os.Getenv("GOROOT"),
"GOPATH="+os.Getenv("GOPATH"),
)
var stdout bytes.Buffer
cmd.Stdout = &stdout
cmd.Stderr = &stdout
2017-01-04 14:13:49 +02:00
if err := cmd.Run(); err != nil {
2016-12-29 18:12:54 +02:00
return errors.New(stdout.String())
}
2016-12-21 15:37:31 +02:00
return nil
}