From eb72b10f553b34bd964966b2306acfcbc05a65e3 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sat, 2 Jan 2021 13:02:16 +0100 Subject: [PATCH] Add mips* architectures to CI and release --- .github/workflows/tests.yml | 2 +- helpers/build-release-binaries/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2bfd8d215..cac311af2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 \ diff --git a/helpers/build-release-binaries/main.go b/helpers/build-release-binaries/main.go index f13867c28..f0b3592a3 100644 --- a/helpers/build-release-binaries/main.go +++ b/helpers/build-release-binaries/main.go @@ -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"},