add script for building releases

This commit is contained in:
Rasmus Moorats 2021-08-13 14:17:35 +03:00
parent a90a4d2185
commit 8a2777a19c
Signed by: xx
GPG key ID: FE14255A6AE7241C
2 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
.vscode/*
iopshell
build/

16
build-release.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/sh
OUT="./build/iopshell"
mkdir build/
# linux specific
for arch in {386,amd64,arm,arm64,mips,mipsle,mips64,mips64le,riscv64}; do
echo "linux/$arch"
GOOS=linux GOARCH=$arch go build -ldflags="-s -w" -o "$OUT.$arch" iopshell.go
done
# windows specific
for arch in {386,amd64,arm}; do
echo "windows/$arch"
GOOS=windows GOARCH=$arch go build -ldflags="-s -w" -o "$OUT.$arch.exe" iopshell.go
done