From 6e9560e818a1c8fa635b9fbbee567a9a1e8fc4e2 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Thu, 3 Oct 2019 16:51:10 -0700 Subject: [PATCH 1/2] build/release: format+sort build existing targets --- build/release/release.sh | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/build/release/release.sh b/build/release/release.sh index db4f4d3b..0e7d1e51 100755 --- a/build/release/release.sh +++ b/build/release/release.sh @@ -37,7 +37,28 @@ cd $MAINDIR # If LNDBUILDSYS is set the default list is ignored. Useful to release # for a subset of systems/architectures. -SYS=${LNDBUILDSYS:-"windows-386 windows-amd64 openbsd-386 openbsd-amd64 linux-386 linux-amd64 linux-armv6 linux-armv7 linux-arm64 darwin-386 darwin-amd64 dragonfly-amd64 freebsd-386 freebsd-amd64 freebsd-arm netbsd-386 netbsd-amd64 linux-mips64 linux-mips64le linux-ppc64"} +SYS=${LNDBUILDSYS:-" + darwin-386 + darwin-amd64 + dragonfly-amd64 + freebsd-386 + freebsd-amd64 + freebsd-arm + linux-386 + linux-amd64 + linux-armv6 + linux-armv7 + linux-arm64 + linux-ppc64 + linux-mips64 + linux-mips64le + netbsd-386 + netbsd-amd64 + openbsd-386 + openbsd-amd64 + windows-386 + windows-amd64 +"} # Use the first element of $GOPATH in the case where GOPATH is a list # (something that is totally allowed). From 122b43b447282fab8ac166fe10a3656c6591e894 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Thu, 3 Oct 2019 16:57:32 -0700 Subject: [PATCH 2/2] build/release: add new release targets Notably, solaris/amd64 and illumos/amd64 were added in go1.13. The others were have been supported previously but were not build targets. After go1.13, nacl/* will no longer be supported and plan9/* is still considered experiemental. As a result they are omitted. --- build/release/release.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/build/release/release.sh b/build/release/release.sh index 0e7d1e51..c1a90e19 100755 --- a/build/release/release.sh +++ b/build/release/release.sh @@ -40,24 +40,37 @@ cd $MAINDIR SYS=${LNDBUILDSYS:-" darwin-386 darwin-amd64 + darwin-arm + darwin-arm64 dragonfly-amd64 freebsd-386 freebsd-amd64 freebsd-arm + illumos-amd64 linux-386 linux-amd64 linux-armv6 linux-armv7 linux-arm64 linux-ppc64 + linux-ppc64le + linux-mips + linux-mipsle linux-mips64 linux-mips64le + linux-s390x netbsd-386 netbsd-amd64 + netbsd-arm + netbsd-arm64 openbsd-386 openbsd-amd64 + openbsd-arm + openbsd-arm64 + solaris-amd64 windows-386 windows-amd64 + windows-arm "} # Use the first element of $GOPATH in the case where GOPATH is a list