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

194 lines
5.0 KiB
Go
Raw Normal View History

2016-12-29 09:58:22 -02:00
package brew
import (
"bytes"
"errors"
"fmt"
2018-01-09 21:31:18 -02:00
"io/ioutil"
2017-01-14 11:18:48 -02:00
"path/filepath"
2016-12-29 09:58:22 -02:00
"strings"
2016-12-29 13:14:52 -02:00
"text/template"
2016-12-29 09:58:22 -02:00
2017-06-22 00:09:14 -03:00
"github.com/apex/log"
2017-12-17 16:31:06 -02:00
2017-07-13 20:22:10 -03:00
"github.com/goreleaser/goreleaser/checksum"
"github.com/goreleaser/goreleaser/config"
2017-01-14 20:01:32 -02:00
"github.com/goreleaser/goreleaser/context"
"github.com/goreleaser/goreleaser/internal/artifact"
2017-05-13 18:06:15 -03:00
"github.com/goreleaser/goreleaser/internal/client"
2017-08-20 16:35:46 -03:00
"github.com/goreleaser/goreleaser/pipeline"
2016-12-29 09:58:22 -02:00
)
2017-12-17 16:31:06 -02:00
// ErrNoDarwin64Build when there is no build for darwin_amd64
var ErrNoDarwin64Build = errors.New("brew tap requires one darwin amd64 build")
// ErrTooManyDarwin64Builds when there are too many builds for darwin_amd64
var ErrTooManyDarwin64Builds = errors.New("brew tap requires at most one darwin amd64 build")
2016-12-30 12:41:59 -02:00
// Pipe for brew deployment
2016-12-30 09:27:35 -02:00
type Pipe struct{}
func (Pipe) String() string {
return "creating homebrew formula"
2016-12-30 09:27:35 -02:00
}
2016-12-30 12:41:59 -02:00
// Run the pipe
2017-01-14 14:06:57 -02:00
func (Pipe) Run(ctx *context.Context) error {
2017-09-26 18:52:37 -03:00
client, err := client.NewGitHub(ctx)
2017-09-22 09:42:36 -03:00
if err != nil {
return err
}
return doRun(ctx, client)
2017-03-26 15:30:21 -03:00
}
// Default sets the pipe defaults
func (Pipe) Default(ctx *context.Context) error {
if ctx.Config.Brew.Install == "" {
var installs []string
for _, build := range ctx.Config.Builds {
if !isBrewBuild(build) {
continue
}
installs = append(
installs,
fmt.Sprintf(`bin.install "%s"`, build.Binary),
)
}
ctx.Config.Brew.Install = strings.Join(installs, "\n")
}
if ctx.Config.Brew.CommitAuthor.Name == "" {
ctx.Config.Brew.CommitAuthor.Name = "goreleaserbot"
}
if ctx.Config.Brew.CommitAuthor.Email == "" {
ctx.Config.Brew.CommitAuthor.Email = "goreleaser@carlosbecker.com"
}
2018-03-07 19:21:01 -03:00
if ctx.Config.Brew.Name == "" {
ctx.Config.Brew.Name = ctx.Config.ProjectName
}
return nil
}
func isBrewBuild(build config.Build) bool {
for _, ignore := range build.Ignore {
if ignore.Goos == "darwin" && ignore.Goarch == "amd64" {
return false
}
}
return contains(build.Goos, "darwin") && contains(build.Goarch, "amd64")
}
func contains(ss []string, s string) bool {
for _, zs := range ss {
if zs == s {
return true
}
}
return false
}
2017-04-14 16:07:27 -03:00
func doRun(ctx *context.Context, client client.Client) error {
if ctx.Config.Brew.GitHub.Name == "" {
2017-08-20 16:35:46 -03:00
return pipeline.Skip("brew section is not configured")
2016-12-30 09:27:35 -02:00
}
2017-07-16 15:23:29 -03:00
if ctx.Config.Archive.Format == "binary" {
2017-08-20 16:35:46 -03:00
return pipeline.Skip("archive format is binary")
}
2017-07-16 15:23:29 -03:00
2017-12-17 16:31:06 -02:00
var archives = ctx.Artifacts.Filter(
2017-12-17 16:59:54 -02:00
artifact.And(
artifact.ByGoos("darwin"),
artifact.ByGoarch("amd64"),
artifact.ByGoarm(""),
2017-12-17 16:59:54 -02:00
artifact.ByType(artifact.UploadableArchive),
),
2017-12-17 16:31:06 -02:00
).List()
if len(archives) == 0 {
2017-07-13 20:22:10 -03:00
return ErrNoDarwin64Build
}
if len(archives) > 1 {
2017-12-17 16:31:06 -02:00
return ErrTooManyDarwin64Builds
2017-07-13 20:22:10 -03:00
}
2018-01-09 21:31:18 -02:00
2017-12-17 16:31:06 -02:00
content, err := buildFormula(ctx, client, archives[0])
2016-12-29 09:58:22 -02:00
if err != nil {
return err
}
2018-01-09 21:31:18 -02:00
2018-03-07 19:21:01 -03:00
var filename = ctx.Config.Brew.Name + ".rb"
2018-01-09 21:31:18 -02:00
var path = filepath.Join(ctx.Config.Dist, filename)
log.WithField("formula", path).Info("writing")
if err := ioutil.WriteFile(path, content.Bytes(), 0644); err != nil {
return err
}
2018-01-10 19:22:37 -02:00
if ctx.Config.Brew.SkipUpload {
return pipeline.Skip("brew.skip_upload is set")
}
if ctx.SkipPublish {
return pipeline.ErrSkipPublishEnabled
2018-01-10 19:22:37 -02:00
}
if ctx.Config.Release.Draft {
return pipeline.Skip("release is marked as draft")
}
2018-01-09 21:31:18 -02:00
path = filepath.Join(ctx.Config.Brew.Folder, filename)
log.WithField("formula", path).
WithField("repo", ctx.Config.Brew.GitHub.String()).
Info("pushing")
return client.CreateFile(ctx, ctx.Config.Brew.CommitAuthor, ctx.Config.Brew.GitHub, content, path)
2016-12-30 09:48:06 -02:00
}
2016-12-29 09:58:22 -02:00
2017-12-17 16:31:06 -02:00
func buildFormula(ctx *context.Context, client client.Client, artifact artifact.Artifact) (bytes.Buffer, error) {
data, err := dataFor(ctx, client, artifact)
2016-12-30 09:48:06 -02:00
if err != nil {
2016-12-30 09:53:05 -02:00
return bytes.Buffer{}, err
2016-12-30 09:48:06 -02:00
}
2017-01-19 10:04:41 +01:00
return doBuildFormula(data)
2016-12-30 09:53:05 -02:00
}
2017-07-16 15:06:32 -03:00
func doBuildFormula(data templateData) (out bytes.Buffer, err error) {
tmpl, err := template.New(data.Name).Parse(formulaTemplate)
2016-12-29 13:14:52 -02:00
if err != nil {
return out, err
}
err = tmpl.Execute(&out, data)
2017-07-16 15:06:32 -03:00
return
2016-12-29 13:14:52 -02:00
}
2017-12-17 16:31:06 -02:00
func dataFor(ctx *context.Context, client client.Client, artifact artifact.Artifact) (result templateData, err error) {
sum, err := checksum.SHA256(artifact.Path)
2017-07-13 20:22:10 -03:00
if err != nil {
return
}
var cfg = ctx.Config.Brew
2017-07-13 20:22:10 -03:00
return templateData{
Name: formulaNameFor(ctx.Config.ProjectName),
DownloadURL: ctx.Config.GitHubURLs.Download,
Desc: cfg.Description,
Homepage: cfg.Homepage,
Repo: ctx.Config.Release.GitHub,
Tag: ctx.Git.CurrentTag,
Version: ctx.Version,
Caveats: cfg.Caveats,
File: artifact.Name,
SHA256: sum,
Dependencies: cfg.Dependencies,
Conflicts: cfg.Conflicts,
Plist: cfg.Plist,
Install: split(cfg.Install),
Tests: split(cfg.Test),
DownloadStrategy: cfg.DownloadStrategy,
2017-07-16 15:06:32 -03:00
}, nil
2016-12-29 09:58:22 -02:00
}
2016-12-29 10:55:35 -02:00
2017-07-16 16:01:20 -03:00
func split(s string) []string {
return strings.Split(strings.TrimSpace(s), "\n")
}
2016-12-29 10:55:35 -02:00
func formulaNameFor(name string) string {
name = strings.Replace(name, "-", " ", -1)
name = strings.Replace(name, "_", " ", -1)
return strings.Replace(strings.Title(name), " ", "", -1)
2016-12-29 13:14:52 -02:00
}