1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +02:00

59 lines
1.2 KiB
Go
Raw Normal View History

2017-04-14 15:39:32 -03:00
// Package checksums provides a Pipe that creates .checksums files for
// each artifact.
2017-04-14 13:31:47 -03:00
package checksums
import (
2017-04-14 13:50:25 -03:00
"fmt"
"log"
2017-04-14 13:31:47 -03:00
"os"
"path/filepath"
2017-04-14 13:50:25 -03:00
"github.com/goreleaser/goreleaser/checksum"
2017-04-14 13:31:47 -03:00
"github.com/goreleaser/goreleaser/context"
2017-04-14 14:07:46 -03:00
"golang.org/x/sync/errgroup"
2017-04-14 13:31:47 -03:00
)
// Pipe for checksums
type Pipe struct{}
// Description of the pipe
func (Pipe) Description() string {
return "Calculating checksums"
}
// Run the pipe
func (Pipe) Run(ctx *context.Context) (err error) {
2017-04-14 13:50:25 -03:00
var g errgroup.Group
for _, artifact := range ctx.Artifacts {
artifact := artifact
g.Go(func() error {
return checksums(ctx, artifact)
})
}
return g.Wait()
}
func checksums(ctx *context.Context, name string) error {
log.Println("Checksumming", name)
var artifact = filepath.Join(ctx.Config.Dist, name)
var checksums = fmt.Sprintf("%v.%v", name, "checksums")
sha, err := checksum.SHA256(artifact)
if err != nil {
return err
}
2017-04-14 13:31:47 -03:00
file, err := os.OpenFile(
2017-04-14 13:50:25 -03:00
filepath.Join(ctx.Config.Dist, checksums),
2017-04-14 14:17:32 -03:00
os.O_APPEND|os.O_WRONLY|os.O_CREATE|os.O_TRUNC,
2017-04-14 13:31:47 -03:00
0600,
)
2017-04-14 14:11:17 -03:00
if err != nil {
return err
}
2017-04-14 13:31:47 -03:00
defer func() { _ = file.Close() }()
2017-04-14 14:53:25 -03:00
if _, err = file.WriteString(fmt.Sprintf("%v\t%v\n", sha, name)); err != nil {
2017-04-14 13:50:25 -03:00
return err
2017-04-14 13:31:47 -03:00
}
ctx.AddArtifact(file.Name())
2017-04-14 13:50:25 -03:00
return nil
2017-04-14 13:31:47 -03:00
}