1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-15 01:34:21 +02:00

feat: default GOARM change to 7 (#5157)

Guarded by an environment variable for now.

Closes #5155
This commit is contained in:
Carlos Alexandro Becker
2024-09-27 13:31:29 -03:00
committed by GitHub
parent 15d54735ab
commit 0468da12fd
9 changed files with 90 additions and 4 deletions

View File

@ -15,6 +15,7 @@ import (
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/v2/internal/artifact"
"github.com/goreleaser/goreleaser/v2/internal/builders/buildtarget"
"github.com/goreleaser/goreleaser/v2/internal/experimental"
"github.com/goreleaser/goreleaser/v2/internal/gio"
"github.com/goreleaser/goreleaser/v2/internal/logext"
"github.com/goreleaser/goreleaser/v2/internal/tmpl"
@ -63,7 +64,7 @@ func (*Builder) WithDefaults(build config.Build) (config.Build, error) {
build.Goarch = []string{"amd64", "arm64", "386"}
}
if len(build.Goarm) == 0 {
build.Goarm = []string{"6"}
build.Goarm = []string{experimental.DefaultGOARM()}
}
if len(build.Gomips) == 0 {
build.Gomips = []string{"hardfloat"}