1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00

Merge branch 'master' into naked-release

This commit is contained in:
Carlos Alexandro Becker 2017-06-06 10:05:59 -03:00 committed by GitHub
commit feb6cbc86f
2 changed files with 6 additions and 6 deletions

View File

@ -74,11 +74,14 @@ func TestValidGoosGoarchCombos(t *testing.T) {
{"linux", "mipsle"},
{"linux", "mips64"},
{"linux", "mips64le"},
{"linux", "ppc64"},
{"linux", "ppc64le"},
{"netbsd", "386"},
{"netbsd", "amd64"},
{"netbsd", "arm"},
{"openbsd", "386"},
{"openbsd", "amd64"},
{"openbsd", "arm"},
{"plan9", "386"},
{"plan9", "amd64"},
{"solaris", "amd64"},
@ -100,9 +103,6 @@ func TestInvalidGoosGoarchCombos(t *testing.T) {
{"darwin", "arm64"},
{"windows", "arm"},
{"windows", "arm64"},
{"linux", "ppc64"},
{"linux", "ppc64le"},
{"openbsd", "arm"},
}
for _, p := range platforms {
t.Run(fmt.Sprintf("%v %v is invalid", p.os, p.arch), func(t *testing.T) {

View File

@ -15,8 +15,8 @@ var valids = []string{
"linuxamd64",
"linuxarm",
"linuxarm64",
// "linuxppc64", - https://github.com/golang/go/issues/10087
// "linuxppc64le", - https://github.com/golang/go/issues/10087
"linuxppc64",
"linuxppc64le",
"linuxmips",
"linuxmipsle",
"linuxmips64",
@ -26,7 +26,7 @@ var valids = []string{
"netbsdarm",
"openbsd386",
"openbsdamd64",
// "openbsdarm", - https://github.com/golang/go/issues/10087
"openbsdarm",
"plan9386",
"plan9amd64",
"solarisamd64",