From 8903b6c88ab475ff118fce6de51b1f55ac86d799 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sat, 12 Sep 2020 16:39:04 +0200 Subject: [PATCH] helpers: Rework list of architectures This also removes darwin/386 which is not supported on Go 1.15 any more. --- helpers/build-release-binaries/main.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/helpers/build-release-binaries/main.go b/helpers/build-release-binaries/main.go index d57608f40..96c8bd1f9 100644 --- a/helpers/build-release-binaries/main.go +++ b/helpers/build-release-binaries/main.go @@ -222,11 +222,11 @@ func buildTargets(sourceDir, outputDir string, targets map[string][]string) { } var defaultBuildTargets = map[string][]string{ - "darwin": []string{"386", "amd64"}, - "freebsd": []string{"386", "amd64", "arm"}, - "linux": []string{"386", "amd64", "arm", "arm64", "ppc64le"}, - "openbsd": []string{"386", "amd64"}, - "windows": []string{"386", "amd64"}, + "darwin": {"amd64"}, + "freebsd": {"386", "amd64", "arm"}, + "linux": {"386", "amd64", "arm", "arm64", "ppc64le"}, + "openbsd": {"386", "amd64"}, + "windows": {"386", "amd64"}, } func main() {