From d7adee05a85bb638e58de274350a46d177ba2805 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Sat, 4 Mar 2017 07:29:50 +0100 Subject: [PATCH] build, jenkins: Build for mips (fixes #3959) --- build.go | 2 +- jenkins/build-linux.bash | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.go b/build.go index 2fa70521a..700ca1253 100644 --- a/build.go +++ b/build.go @@ -255,7 +255,7 @@ func main() { func checkArchitecture() { switch goarch { - case "386", "amd64", "arm", "arm64", "ppc64", "ppc64le": + case "386", "amd64", "arm", "arm64", "ppc64", "ppc64le", "mips": break default: log.Printf("Unknown goarch %q; proceed with caution!", goarch) diff --git a/jenkins/build-linux.bash b/jenkins/build-linux.bash index 6e418ad7a..8ddbee94a 100755 --- a/jenkins/build-linux.bash +++ b/jenkins/build-linux.bash @@ -26,7 +26,7 @@ testWithCoverage platforms=( dragonfly-amd64 freebsd-amd64 freebsd-386 - linux-amd64 linux-386 linux-arm linux-arm64 linux-ppc64 linux-ppc64le + linux-amd64 linux-386 linux-arm linux-arm64 linux-ppc64 linux-ppc64le linux-mips netbsd-amd64 netbsd-386 openbsd-amd64 openbsd-386 )