2017-04-14 20:39:32 +02:00
|
|
|
// Package defaults implements the Pipe interface providing default values
|
|
|
|
// for missing configuration.
|
2017-01-14 16:34:22 +02:00
|
|
|
package defaults
|
|
|
|
|
|
|
|
import (
|
2017-01-14 20:12:20 +02:00
|
|
|
"errors"
|
2017-01-14 18:29:01 +02:00
|
|
|
"io/ioutil"
|
|
|
|
"strings"
|
2017-01-14 16:34:22 +02:00
|
|
|
|
2017-01-15 00:01:32 +02:00
|
|
|
"github.com/goreleaser/goreleaser/context"
|
2017-01-14 16:34:22 +02:00
|
|
|
)
|
|
|
|
|
2017-01-14 19:16:29 +02:00
|
|
|
var defaultFiles = []string{"licence", "license", "readme", "changelog"}
|
2017-01-14 16:34:22 +02:00
|
|
|
|
2017-04-24 19:27:21 +02:00
|
|
|
// NameTemplate default name_template for the archive.
|
|
|
|
const NameTemplate = "{{ .Binary }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
|
|
|
|
2017-01-14 16:34:22 +02:00
|
|
|
// Pipe for brew deployment
|
|
|
|
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 "Setting defaults"
|
2017-01-14 16:34:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run the pipe
|
2017-01-14 20:41:32 +02:00
|
|
|
func (Pipe) Run(ctx *context.Context) error {
|
2017-03-23 02:01:29 +02:00
|
|
|
if ctx.Config.Release.GitHub.Name == "" {
|
2017-01-14 20:12:20 +02:00
|
|
|
repo, err := remoteRepo()
|
2017-03-23 02:01:29 +02:00
|
|
|
ctx.Config.Release.GitHub = repo
|
2017-01-14 20:12:20 +02:00
|
|
|
if err != nil {
|
2017-01-14 23:47:15 +02:00
|
|
|
return errors.New("failed reading repo from git: " + err.Error())
|
2017-01-14 20:12:20 +02:00
|
|
|
}
|
|
|
|
}
|
2017-03-23 02:06:37 +02:00
|
|
|
if ctx.Config.Build.Binary == "" {
|
|
|
|
ctx.Config.Build.Binary = ctx.Config.Release.GitHub.Name
|
2017-01-14 20:29:30 +02:00
|
|
|
}
|
2017-01-14 18:06:57 +02:00
|
|
|
if ctx.Config.Build.Main == "" {
|
2017-02-26 18:01:48 +02:00
|
|
|
ctx.Config.Build.Main = "."
|
2017-01-14 16:34:22 +02:00
|
|
|
}
|
2017-01-14 23:47:15 +02:00
|
|
|
if len(ctx.Config.Build.Goos) == 0 {
|
|
|
|
ctx.Config.Build.Goos = []string{"linux", "darwin"}
|
2017-01-14 16:34:22 +02:00
|
|
|
}
|
2017-01-14 23:47:15 +02:00
|
|
|
if len(ctx.Config.Build.Goarch) == 0 {
|
|
|
|
ctx.Config.Build.Goarch = []string{"amd64", "386"}
|
2017-01-14 16:34:22 +02:00
|
|
|
}
|
2017-04-24 19:27:21 +02:00
|
|
|
if len(ctx.Config.Build.Goarm) == 0 {
|
|
|
|
ctx.Config.Build.Goarm = []string{"6"}
|
|
|
|
}
|
2017-01-14 18:06:57 +02:00
|
|
|
if ctx.Config.Build.Ldflags == "" {
|
2017-03-26 01:24:38 +02:00
|
|
|
ctx.Config.Build.Ldflags = "-s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}"
|
2017-01-14 16:34:22 +02:00
|
|
|
}
|
2017-01-14 23:47:15 +02:00
|
|
|
|
2017-01-14 18:06:57 +02:00
|
|
|
if ctx.Config.Archive.NameTemplate == "" {
|
2017-04-24 19:27:21 +02:00
|
|
|
ctx.Config.Archive.NameTemplate = NameTemplate
|
2017-01-14 16:34:22 +02:00
|
|
|
}
|
2017-01-14 18:06:57 +02:00
|
|
|
if ctx.Config.Archive.Format == "" {
|
|
|
|
ctx.Config.Archive.Format = "tar.gz"
|
2017-01-14 16:34:22 +02:00
|
|
|
}
|
2017-01-14 18:06:57 +02:00
|
|
|
if len(ctx.Config.Archive.Replacements) == 0 {
|
|
|
|
ctx.Config.Archive.Replacements = map[string]string{
|
2017-01-14 16:34:22 +02:00
|
|
|
"darwin": "Darwin",
|
|
|
|
"linux": "Linux",
|
|
|
|
"freebsd": "FreeBSD",
|
|
|
|
"openbsd": "OpenBSD",
|
|
|
|
"netbsd": "NetBSD",
|
|
|
|
"windows": "Windows",
|
|
|
|
"386": "i386",
|
|
|
|
"amd64": "x86_64",
|
|
|
|
}
|
|
|
|
}
|
2017-01-14 23:47:15 +02:00
|
|
|
if len(ctx.Config.Archive.Files) == 0 {
|
|
|
|
files, err := findFiles()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx.Config.Archive.Files = files
|
2017-01-14 16:34:22 +02:00
|
|
|
}
|
2017-03-09 21:33:17 +02:00
|
|
|
if ctx.Config.Brew.Install == "" {
|
2017-03-23 02:25:41 +02:00
|
|
|
ctx.Config.Brew.Install = "bin.install \"" + ctx.Config.Build.Binary + "\""
|
2017-03-09 21:33:17 +02:00
|
|
|
}
|
2017-03-26 02:31:16 +02:00
|
|
|
ctx.Config.Dist = "dist"
|
2017-01-14 20:41:32 +02:00
|
|
|
return nil
|
2017-01-14 16:34:22 +02:00
|
|
|
}
|
|
|
|
|
2017-01-14 18:38:48 +02:00
|
|
|
func findFiles() (files []string, err error) {
|
|
|
|
all, err := ioutil.ReadDir(".")
|
2017-01-14 18:29:01 +02:00
|
|
|
if err != nil {
|
2017-01-14 16:34:22 +02:00
|
|
|
return
|
|
|
|
}
|
2017-01-14 18:29:01 +02:00
|
|
|
for _, file := range all {
|
2017-01-14 18:38:48 +02:00
|
|
|
if accept(file.Name()) {
|
|
|
|
files = append(files, file.Name())
|
2017-01-14 18:29:01 +02:00
|
|
|
}
|
2017-01-14 16:34:22 +02:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2017-01-14 18:38:48 +02:00
|
|
|
|
|
|
|
func accept(file string) bool {
|
|
|
|
for _, accepted := range defaultFiles {
|
2017-01-14 19:16:29 +02:00
|
|
|
if strings.HasPrefix(strings.ToLower(file), accepted) {
|
2017-01-14 18:38:48 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|