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

Allow linux s390x builds

This commit is contained in:
Anthony Fok 2017-07-26 01:04:03 -06:00
parent 2276822397
commit 183d378cab
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},