1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

Merge pull request #315 from anthonyfok/linux-s390x

Allow linux s390x builds
This commit is contained in:
Carlos Alexandro Becker 2017-07-26 09:19:20 -03:00 committed by GitHub
commit d67fe65e6a
2 changed files with 2 additions and 0 deletions

View File

@ -85,6 +85,7 @@ var validTargets = []string{
"linuxmipsle",
"linuxmips64",
"linuxmips64le",
"linuxs390x",
"netbsd386",
"netbsdamd64",
"netbsdarm",

View File

@ -80,6 +80,7 @@ func TestGoosGoarchCombos(t *testing.T) {
{"linux", "mips64le", true},
{"linux", "ppc64", true},
{"linux", "ppc64le", true},
{"linux", "s390x", true},
{"netbsd", "386", true},
{"netbsd", "amd64", true},
{"netbsd", "arm", true},