-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
echo "build for mac amd64" | ||
GOOS=darwin GOARCH=amd64 go build -o pocketbi main.go | ||
zip -r pocketbi_mac_amd64.zip pocketbi pb_public/* | ||
rm pocketbi | ||
|
||
echo "build for mac arm64" | ||
GOOS=darwin GOARCH=arm64 go build -o pocketbi main.go | ||
zip -r pocketbi_mac_arm64.zip pocketbi pb_public/* | ||
rm pocketbi | ||
|
||
echo "build for linux amd64" | ||
GOOS=linux GOARCH=amd64 go build -o pocketbi main.go | ||
zip -r pocketbi_linux_amd64.zip pocketbi pb_public/* | ||
rm pocketbi | ||
|
||
echo "build for linux arm64" | ||
GOOS=linux GOARCH=arm64 go build -o pocketbi main.go | ||
zip -r pocketbi_linux_arm64.zip pocketbi pb_public/* | ||
rm pocketbi | ||
|
||
echo "build for windows amd64" | ||
GOOS=windows GOARCH=amd64 go build -o pocketbi.exe main.go | ||
zip -r pocketbi_windows_amd64.zip pocketbi.exe pb_public/* | ||
rm pocketbi.exe |