Add mips* architectures to CI and release

This commit is contained in:
Alexander Neumann 2021-01-02 13:02:16 +01:00
parent 622f4c7daa
commit eb72b10f55
2 changed files with 2 additions and 2 deletions

View File

@ -210,7 +210,7 @@ jobs:
GOX_ARCHS: "aix/ppc64 \
darwin/amd64 \
freebsd/386 freebsd/amd64 freebsd/arm \
linux/386 linux/amd64 linux/arm linux/arm64 linux/ppc64le \
linux/386 linux/amd64 linux/arm linux/arm64 linux/ppc64le linux/mips linux/mipsle linux/mips64 linux/mips64le \
netbsd/386 netbsd/amd64 \
openbsd/386 openbsd/amd64 \
windows/386 windows/amd64 \

View File

@ -226,7 +226,7 @@ var defaultBuildTargets = map[string][]string{
"aix": {"ppc64"},
"darwin": {"amd64"},
"freebsd": {"386", "amd64", "arm"},
"linux": {"386", "amd64", "arm", "arm64", "ppc64le"},
"linux": {"386", "amd64", "arm", "arm64", "ppc64le", "mips", "mipsle", "mips64", "mips64le"},
"netbsd": {"386", "amd64"},
"openbsd": {"386", "amd64"},
"windows": {"386", "amd64"},