build.sh 840 字节
Newer Older
1 2 3 4
rm -rf ztf
mkdir ztf
mkdir ztf/log
cp -r conf ztf/
5
cp -r runtime ztf/
6 7
cp -r demo ztf/

aaronchen2k2k's avatar
aaronchen2k2k 已提交
8
/Users/aaron/go/bin/go-bindata -o=res/res.go -pkg=res res/ res/doc res/json res/template
9

10 11 12
CGO_ENABLED=0 GOOS=windows GOARCH=386 go build -o ztf/ztf-x86.exe src/ztf.go
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o ztf/ztf-amd64.exe src/ztf.go

13 14 15 16
GO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ztf/ztf-linux src/ztf.go
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o ztf/ztf-mac src/ztf.go

cd ztf
17

18
cp ztf-x86.exe ztf.exe
aaronchen2k2k's avatar
aaronchen2k2k 已提交
19
zip -r ztf-win-x86-2.1.zip ztf.exe conf demo runtime log
20 21 22
rm ztf.exe

cp ztf-amd64.exe ztf.exe
aaronchen2k2k's avatar
aaronchen2k2k 已提交
23
zip -r ztf-win-amd64-2.1.zip ztf.exe conf demo runtime log
24
rm ztf.exe
25

26
cp ztf-linux ztf
aaronchen2k2k's avatar
aaronchen2k2k 已提交
27
tar -zcvf ztf-linux-2.1.tar.gz ztf conf demo runtime log
28
rm ztf
29

30
cp ztf-mac ztf
aaronchen2k2k's avatar
aaronchen2k2k 已提交
31
zip -r ztf-mac-2.1.zip ztf conf demo runtime log
32
rm ztf
33

34
cd ..