tank/build/pack/build.sh
2018-01-12 16:35:21 +08:00

80 lines
1.5 KiB
Bash
Executable File

#!/bin/bash
# if GOPATH not set
if [ -z "$GOPATH" ] ; then
echo "GOPATH not defined"
exit 1
fi
PRE_DIR=$(pwd)
VERSION_NAME=tank-1.0.1
FINAL_NAME=$VERSION_NAME.linux-amd64.tar.gz
cd $GOPATH
echo "golang.org . Please download from: https://github.com/eyebluecn/golang.org and put in the directory with same level of github.com"
# echo "go get golang.org/x"
# go get golang.org/x
# resize image
echo "go get github.com/disintegration/imaging"
go get github.com/disintegration/imaging
# json parser
echo "go get github.com/json-iterator/go"
go get github.com/json-iterator/go
# mysql
echo "go get github.com/go-sql-driver/mysql"
go get github.com/go-sql-driver/mysql
# dao database
echo "go get github.com/jinzhu/gorm"
go get github.com/jinzhu/gorm
# uuid
echo "go get github.com/nu7hatch/gouuid"
go get github.com/nu7hatch/gouuid
echo "build tank ..."
go install tank
echo "packaging..."
distFolder="$GOPATH/src/tank/dist"
# if a directory
if [ ! -d distFolder ] ; then
mkdir $distFolder
fi
distPath=$distFolder/$VERSION_NAME
# if a directory
if [ -d $distPath ] ; then
echo "clear $distPath"
rm -rf $distPath
fi
echo "create directory $distPath"
mkdir $distPath
echo "copying cmd tank"
cp "$GOPATH/bin/tank" $distPath
echo "copying build"
cp -r "$GOPATH/src/tank/build/." $distPath
echo "remove pack"
rm -rf $distPath/pack
echo "compress to tar.gz"
echo "tar -zcvf $distFolder/$FINAL_NAME ./$VERSION_NAME"
cd $distPath
cd ..
tar -zcvf $distFolder/$FINAL_NAME ./$VERSION_NAME
cd $PRE_DIR
echo "check the dist file in $distPath"
echo "finish!"