mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-24 04:16:27 +02:00
wip checksums
This commit is contained in:
parent
a38ebfcc81
commit
16cf195f9b
36
checksum/checksum.go
Normal file
36
checksum/checksum.go
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
package checksum
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/md5"
|
||||||
|
"crypto/sha256"
|
||||||
|
"encoding/hex"
|
||||||
|
"hash"
|
||||||
|
"io"
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MD5 sum of the given file
|
||||||
|
func MD5(path string) (result string, err error) {
|
||||||
|
return calculate(md5.New(), path)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SHA256 sum of the given file
|
||||||
|
func SHA256(path string) (result string, err error) {
|
||||||
|
return calculate(sha256.New(), path)
|
||||||
|
}
|
||||||
|
|
||||||
|
func calculate(hash hash.Hash, path string) (result string, err error) {
|
||||||
|
file, err := os.Open(path)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer func() { _ = file.Close() }()
|
||||||
|
|
||||||
|
_, err = io.Copy(hash, file)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result = hex.EncodeToString(hash.Sum(nil))
|
||||||
|
return
|
||||||
|
}
|
@ -8,10 +8,10 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
|
"github.com/goreleaser/goreleaser/checksum"
|
||||||
"github.com/goreleaser/goreleaser/clients"
|
"github.com/goreleaser/goreleaser/clients"
|
||||||
"github.com/goreleaser/goreleaser/config"
|
"github.com/goreleaser/goreleaser/config"
|
||||||
"github.com/goreleaser/goreleaser/context"
|
"github.com/goreleaser/goreleaser/context"
|
||||||
"github.com/goreleaser/goreleaser/sha256sum"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// ErrNoDarwin64Build when there is no build for darwin_amd64 (goos doesn't
|
// ErrNoDarwin64Build when there is no build for darwin_amd64 (goos doesn't
|
||||||
@ -137,7 +137,7 @@ func dataFor(ctx *context.Context, client clients.Client) (result templateData,
|
|||||||
if file == "" {
|
if file == "" {
|
||||||
return result, ErrNoDarwin64Build
|
return result, ErrNoDarwin64Build
|
||||||
}
|
}
|
||||||
sum, err := sha256sum.For(
|
sum, err := checksum.SHA256(
|
||||||
filepath.Join(
|
filepath.Join(
|
||||||
ctx.Config.Dist,
|
ctx.Config.Dist,
|
||||||
file+"."+ctx.Config.Archive.Format,
|
file+"."+ctx.Config.Archive.Format,
|
||||||
|
@ -1,11 +1,15 @@
|
|||||||
package checksums
|
package checksums
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
|
"golang.org/x/sync/errgroup"
|
||||||
|
|
||||||
|
"github.com/goreleaser/goreleaser/checksum"
|
||||||
"github.com/goreleaser/goreleaser/context"
|
"github.com/goreleaser/goreleaser/context"
|
||||||
"github.com/goreleaser/goreleaser/sha256sum"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Pipe for checksums
|
// Pipe for checksums
|
||||||
@ -18,24 +22,41 @@ func (Pipe) Description() string {
|
|||||||
|
|
||||||
// Run the pipe
|
// Run the pipe
|
||||||
func (Pipe) Run(ctx *context.Context) (err error) {
|
func (Pipe) Run(ctx *context.Context) (err error) {
|
||||||
|
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
|
||||||
|
}
|
||||||
|
md5, err := checksum.MD5(artifact)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
file, err := os.OpenFile(
|
file, err := os.OpenFile(
|
||||||
filepath.Join(ctx.Config.Dist, "CHECKSUMS.txt"),
|
filepath.Join(ctx.Config.Dist, checksums),
|
||||||
os.O_APPEND|os.O_WRONLY|os.O_CREATE,
|
os.O_APPEND|os.O_WRONLY|os.O_CREATE|os.O_EXCL,
|
||||||
0600,
|
0600,
|
||||||
)
|
)
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
defer func() { _ = file.Close() }()
|
defer func() { _ = file.Close() }()
|
||||||
for _, artifact := range ctx.Artifacts {
|
var template = "%v %v\n"
|
||||||
sha, err := sha256sum.For(filepath.Join(ctx.Config.Dist, artifact))
|
if _, err = file.WriteString(fmt.Sprintf(template, "md5sum", md5)); err != nil {
|
||||||
if err != nil {
|
return err
|
||||||
return err
|
}
|
||||||
}
|
if _, err = file.WriteString(fmt.Sprintf(template, "sha256sum", sha)); err != nil {
|
||||||
if _, err = file.WriteString(artifact + " sha256sum: " + sha + "\n"); err != nil {
|
return err
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
ctx.AddArtifact(file.Name())
|
ctx.AddArtifact(file.Name())
|
||||||
return
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
package sha256sum
|
|
||||||
|
|
||||||
import (
|
|
||||||
"crypto/sha256"
|
|
||||||
"encoding/hex"
|
|
||||||
"io"
|
|
||||||
"os"
|
|
||||||
)
|
|
||||||
|
|
||||||
// For calculates the SHA256 sum for the given file
|
|
||||||
func For(path string) (result string, err error) {
|
|
||||||
file, err := os.Open(path)
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
defer func() { _ = file.Close() }()
|
|
||||||
|
|
||||||
hash := sha256.New()
|
|
||||||
_, err = io.Copy(hash, file)
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
result = hex.EncodeToString(hash.Sum(nil))
|
|
||||||
return
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user