Added more build platform targets, maybe I'll even test some of them
This commit is contained in:
parent
e8a06a09a4
commit
06fd74741f
28
build.sh
28
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
|
||||
|
|
Loading…
Reference in New Issue