Add build script
This commit is contained in:
parent
5f75ba5c3e
commit
c87e4dc433
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
build
|
22
build.sh
Executable file
22
build.sh
Executable file
@ -0,0 +1,22 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
rm -rf ./build
|
||||
export GOARCH=amd64
|
||||
|
||||
export GOOS=windows
|
||||
go build -o ./build/$GOOS/mdv/ .
|
||||
pushd build/$GOOS
|
||||
7za a mdv.zip mdv
|
||||
popd
|
||||
|
||||
export GOOS=linux
|
||||
go build -o ./build/$GOOS/mdv/ .
|
||||
pushd build/$GOOS
|
||||
tar czvf mdv.tar.gz mdv
|
||||
popd
|
||||
|
||||
export GOOS=darwin
|
||||
go build -o ./build/$GOOS/mdv/ .
|
||||
pushd build/$GOOS
|
||||
tar czvf mdv.tar.gz mdv
|
||||
popd
|
Loading…
Reference in New Issue
Block a user