1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/pipeline/fpm/fpm.go
Jorin Vogel 454abc9a0a
Add option to skip archive.
See #243.
Upload binaries directly instead of creating archive.
This option, however currently doesn't work together with brew and fpm
since they both require archived artifacts.
2017-06-05 18:04:07 +02:00

110 lines
2.7 KiB
Go

// Package fpm implements the Pipe interface providing FPM bindings.
package fpm
import (
"errors"
"log"
"os/exec"
"path/filepath"
"github.com/goreleaser/goreleaser/context"
"golang.org/x/sync/errgroup"
)
var goarchToUnix = map[string]string{
"386": "i386",
"amd64": "x86_64",
}
// ErrNoFPM is shown when fpm cannot be found in $PATH
var ErrNoFPM = errors.New("fpm not present in $PATH")
// Pipe for fpm packaging
type Pipe struct{}
// Description of the pipe
func (Pipe) Description() string {
return "Creating Linux packages with fpm"
}
// Run the pipe
func (Pipe) Run(ctx *context.Context) error {
if len(ctx.Config.FPM.Formats) == 0 {
log.Println("No output formats configured, skipping")
return nil
}
if ctx.Config.Archive.Skip {
log.Println("Skipped because archiving is skipped")
return nil
}
_, err := exec.LookPath("fpm")
if err != nil {
return ErrNoFPM
}
var g errgroup.Group
for _, format := range ctx.Config.FPM.Formats {
for _, goarch := range ctx.Config.Build.Goarch {
if ctx.Archives["linux"+goarch] == "" {
continue
}
archive := ctx.Archives["linux"+goarch]
arch := goarchToUnix[goarch]
g.Go(func() error {
return create(ctx, format, archive, arch)
})
}
}
return g.Wait()
}
func create(ctx *context.Context, format, archive, arch string) error {
var path = filepath.Join(ctx.Config.Dist, archive)
var file = path + "." + format
var name = ctx.Config.Build.Binary
log.Println("Creating", file)
var options = []string{
"--input-type", "dir",
"--output-type", format,
"--name", name,
"--version", ctx.Version,
"--architecture", arch,
"--chdir", path,
"--package", file,
"--force",
}
if ctx.Config.FPM.Vendor != "" {
options = append(options, "--vendor", ctx.Config.FPM.Vendor)
}
if ctx.Config.FPM.Homepage != "" {
options = append(options, "--url", ctx.Config.FPM.Homepage)
}
if ctx.Config.FPM.Maintainer != "" {
options = append(options, "--maintainer", ctx.Config.FPM.Maintainer)
}
if ctx.Config.FPM.Description != "" {
options = append(options, "--description", ctx.Config.FPM.Description)
}
if ctx.Config.FPM.License != "" {
options = append(options, "--license", ctx.Config.FPM.License)
}
for _, dep := range ctx.Config.FPM.Dependencies {
options = append(options, "--depends", dep)
}
for _, conflict := range ctx.Config.FPM.Conflicts {
options = append(options, "--conflicts", conflict)
}
// This basically tells fpm to put the binary in the /usr/local/bin
// binary=/usr/local/bin/binary
options = append(options, name+"="+filepath.Join("/usr/local/bin", name))
if out, err := exec.Command("fpm", options...).CombinedOutput(); err != nil {
return errors.New(string(out))
}
ctx.AddArtifact(file)
return nil
}