From 37ceafaedfc7d6aeb065668f927e3aa464dbab8c Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 12 Oct 2019 13:13:17 +0200 Subject: [PATCH] Drop cross-compilation of FreeBSD binary artifacts Drop cross-compilation of FreeBSD binary artifacts There were too many compatibility problems with some dependencies due to native bindings. Therefore only builds for the main OS and architectures (Linux, macOS and Windows) are compiled for now which covers almost all users. Epic GH-33 GH-83 --- magefile.go | 1 - 1 file changed, 1 deletion(-) diff --git a/magefile.go b/magefile.go index 27d16a3..f3b638b 100644 --- a/magefile.go +++ b/magefile.go @@ -75,7 +75,6 @@ var ( // Also see the source of the `build` command: https://github.com/golang/go/blob/master/src/cmd/dist/build.go crossCompileTargetPlatforms = []string{ "darwin/amd64", - "freebsd/amd64", "linux/amd64", "windows/amd64", }