mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-17 20:47:50 +02:00
parent
f96315cf3f
commit
8d96eef1c7
@ -92,6 +92,10 @@ func (Pipe) Run(ctx *context.Context) error {
|
||||
).GroupByPlatform() {
|
||||
sem <- true
|
||||
arch := linux.Arch(platform)
|
||||
if arch == "armel" {
|
||||
log.WithField("arch", arch).Warn("ignored unsupported arch")
|
||||
continue
|
||||
}
|
||||
binaries := binaries
|
||||
g.Go(func() error {
|
||||
go func() {
|
||||
|
@ -173,7 +173,7 @@ func TestDefaultSet(t *testing.T) {
|
||||
|
||||
func addBinaries(t *testing.T, ctx *context.Context, name, dist string) {
|
||||
for _, goos := range []string{"linux", "darwin"} {
|
||||
for _, goarch := range []string{"amd64", "386"} {
|
||||
for _, goarch := range []string{"amd64", "386", "arm6"} {
|
||||
var folder = goos + goarch
|
||||
assert.NoError(t, os.Mkdir(filepath.Join(dist, folder), 0755))
|
||||
var binPath = filepath.Join(dist, folder, name)
|
||||
|
Loading…
x
Reference in New Issue
Block a user