From 06fd74741fd1f00726133d3557d62bf5d52f172b Mon Sep 17 00:00:00 2001 From: Seednode Date: Fri, 11 Nov 2022 17:44:05 -0600 Subject: [PATCH] Added more build platform targets, maybe I'll even test some of them --- build.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/build.sh b/build.sh index 9998905..5e193c9 100755 --- a/build.sh +++ b/build.sh @@ -4,14 +4,42 @@ package_name="roulette" mkdir -p builds platforms=( + "aix/ppc64" + "android/arm64" "darwin/amd64" "darwin/arm64" + "dragonfly/amd64" + "freebsd/386" + "freebsd/amd64" + "freebsd/arm" + "freebsd/arm64" + "illumos/amd64" + "js/wasm" "linux/386" "linux/amd64" "linux/arm" "linux/arm64" + "linux/mips" + "linux/mips64" + "linux/mips64le" + "linux/mipsle" + "linux/ppc64" + "linux/ppc64le" + "linux/riscv64" + "linux/s390x" + "netbsd/386" + "netbsd/amd64" + "netbsd/arm" + "netbsd/arm64" + "openbsd/386" + "openbsd/amd64" + "openbsd/arm" + "openbsd/arm64" + "openbsd/mips64" "windows/386" "windows/amd64" + "windows/arm" + "windows/arm64" ) for platform in "${platforms[@]}"; do