mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-19 20:57:53 +02:00
fix: support ios/arm64
closes #3251 Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
parent
999ca7afea
commit
bc1e9db47b
internal/builders/buildtarget
@ -155,6 +155,7 @@ var (
|
||||
"freebsdarm",
|
||||
"freebsdarm64", // not on the official list for some reason, yet its supported on go 1.14+
|
||||
"illumosamd64",
|
||||
"iosarm64",
|
||||
"jswasm",
|
||||
"linux386",
|
||||
"linuxamd64",
|
||||
@ -192,6 +193,7 @@ var (
|
||||
"dragonfly",
|
||||
"freebsd",
|
||||
"illumos",
|
||||
"ios",
|
||||
"js",
|
||||
"linux",
|
||||
"netbsd",
|
||||
|
@ -18,6 +18,7 @@ func TestAllBuildTargets(t *testing.T) {
|
||||
"openbsd",
|
||||
"windows",
|
||||
"js",
|
||||
"ios",
|
||||
},
|
||||
Goarch: []string{
|
||||
"386",
|
||||
@ -107,6 +108,7 @@ func TestAllBuildTargets(t *testing.T) {
|
||||
"windows_arm_7",
|
||||
"windows_arm64",
|
||||
"js_wasm",
|
||||
"ios_arm64",
|
||||
}, result)
|
||||
})
|
||||
|
||||
@ -174,6 +176,7 @@ func TestGoosGoarchCombos(t *testing.T) {
|
||||
{"freebsd", "amd64", true},
|
||||
{"freebsd", "arm", true},
|
||||
{"illumos", "amd64", true},
|
||||
{"ios", "arm64", true},
|
||||
{"linux", "386", true},
|
||||
{"linux", "amd64", true},
|
||||
{"linux", "arm", true},
|
||||
|
Loading…
x
Reference in New Issue
Block a user