1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00

104 lines
2.8 KiB
Go
Raw Normal View History

2017-09-11 23:31:00 -03:00
// Package docker provides a Pipe that creates and pushes a Docker image
package docker
import (
"fmt"
"io/ioutil"
"os/exec"
"path/filepath"
"github.com/apex/log"
"github.com/goreleaser/goreleaser/config"
"github.com/goreleaser/goreleaser/context"
"github.com/goreleaser/goreleaser/pipeline"
2017-09-11 23:50:57 -03:00
"github.com/pkg/errors"
2017-09-11 23:31:00 -03:00
)
// Pipe for checksums
type Pipe struct{}
// Description of the pipe
func (Pipe) Description() string {
return "Creating Docker images"
}
// Run the pipe
func (Pipe) Run(ctx *context.Context) (err error) {
2017-09-11 23:42:36 -03:00
if ctx.Config.Dockers[0].Image == "" {
2017-09-11 23:31:00 -03:00
return pipeline.Skip("docker section is not configured")
}
if ctx.Config.Release.Draft {
return pipeline.Skip("release is marked as draft")
}
2017-09-11 23:42:36 -03:00
for _, docker := range ctx.Config.Dockers {
2017-09-11 23:31:00 -03:00
var imagePlatform = docker.Goos + docker.Goarch + docker.Goarm
for platform, groups := range ctx.Binaries {
if platform != imagePlatform {
continue
}
for folder, binaries := range groups {
for _, binary := range binaries {
if binary.Name != docker.Binary {
continue
}
var err = doRun(ctx, folder, docker, binary)
if err != nil && !pipeline.IsSkip(err) {
return err
}
}
}
}
}
return nil
}
func doRun(ctx *context.Context, folder string, docker config.Docker, binary context.Binary) error {
var root = filepath.Join(ctx.Config.Dist, folder)
var dockerfile = filepath.Join(root, "Dockerfile")
2017-09-11 23:42:36 -03:00
var image = fmt.Sprintf("%s:%s", docker.Image, ctx.Git.CurrentTag)
2017-09-11 23:31:00 -03:00
bts, err := ioutil.ReadFile(docker.Dockerfile)
if err != nil {
return errors.Wrap(err, "failed to read dockerfile")
}
if err := ioutil.WriteFile(dockerfile, bts, 0755); err != nil {
return err
}
2017-09-11 23:42:36 -03:00
log.WithField("file", dockerfile).Debug("wrote dockerfile")
2017-09-11 23:31:00 -03:00
if err := dockerBuild(root, image); err != nil {
return err
}
2017-09-11 23:59:43 -03:00
// TODO: improve this so it can log into to stdout
2017-09-11 23:31:00 -03:00
if !ctx.Publish {
return pipeline.Skip("--skip-publish is set")
}
if err := dockerPush(image); err != nil {
return err
}
return nil
}
func dockerBuild(root, image string) error {
2017-09-11 23:42:36 -03:00
log.WithField("image", image).Info("building docker image")
2017-09-11 23:31:00 -03:00
var cmd = exec.Command("docker", "build", "-t", image, root)
log.WithField("cmd", cmd).Debug("executing")
out, err := cmd.CombinedOutput()
if err != nil {
return errors.Wrapf(err, "failed to build docker image: \n%s", string(out))
}
log.Debugf("docker build output: \n%s", string(out))
return nil
}
func dockerPush(image string) error {
2017-09-11 23:42:36 -03:00
log.WithField("image", image).Info("pushing docker image")
2017-09-11 23:31:00 -03:00
var cmd = exec.Command("docker", "push", image)
log.WithField("cmd", cmd).Debug("executing")
out, err := cmd.CombinedOutput()
if err != nil {
return errors.Wrapf(err, "failed to push docker image: \n%s", string(out))
}
log.Debugf("docker push output: \n%s", string(out))
return nil
}