1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-19 20:57:53 +02:00

fix: support ios/arm64

closes 

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos A Becker 2022-07-26 09:30:04 -03:00
parent 999ca7afea
commit bc1e9db47b
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 5 additions and 0 deletions
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},