release.sh 1.5 KB
Newer Older
1 2
set -e

B
Bomin Zhang 已提交
3
# releash.sh  -c [armv6l | arm64 | amd64 | 386] 
4 5 6
#             -o [linux | darwin | windows]  

# set parameters by default value
B
Bomin Zhang 已提交
7
cpuType=amd64    # [armv6l | arm64 | amd64 | 386]
8
osType=linux   # [linux | darwin | windows]
H
Hui Li 已提交
9
version=""
B
Bomin Zhang 已提交
10
declare -A archMap=(["armv6l"]="arm" ["arm64"]="arm64" ["amd64"]="x64" ["386"]="x86")
H
Hui Li 已提交
11
while getopts "h:c:o:n:" arg
12 13 14 15 16 17 18 19 20 21
do
  case $arg in
    c)
      #echo "cpuType=$OPTARG"
      cpuType=$(echo $OPTARG)
      ;;
    o)
      #echo "osType=$OPTARG"
      osType=$(echo $OPTARG)
      ;;
H
Hui Li 已提交
22 23 24 25
    n)
      #echo "version=$OPTARG"
      version=$(echo $OPTARG)
      ;;
26
    h)
B
Bomin Zhang 已提交
27
      echo "Usage: `basename $0` -c [armv6l | arm64 | amd64 | 386] -o [linux | darwin | windows]"
28 29 30 31 32 33 34 35 36
      exit 0
      ;;
    ?) #unknown option 
      echo "unknown argument"
      exit 1
      ;;
  esac
done

H
Hui Li 已提交
37 38 39 40
if [ "$version" == "" ]; then 
  echo "Please input the correct version!"
  exit 1
fi
41 42 43 44 45 46 47 48 49

startdir=$(pwd)
scriptdir=$(dirname $(readlink -f $0))
cd ${scriptdir}/cmd/alert

echo "cpuType=${cpuType}"
echo "osType=${osType}"
echo "version=${version}"

H
Hui Li 已提交
50 51 52 53 54 55 56 57 58 59
GOOS=${osType} GOARCH=${cpuType} go build -ldflags '-X main.version='${version}

mkdir -p TDengine-alert/driver

cp alert alert.cfg install_driver.sh ./TDengine-alert/.
cp ../../../debug/build/lib/libtaos.so.${version} ./TDengine-alert/driver/.
chmod 777 ./TDengine-alert/install_driver.sh

tar -I 'gzip -9' -cf ${startdir}/TDengine-alert-${version}-${osType^}-${archMap[${cpuType}]}.tar.gz TDengine-alert/
rm -rf ./TDengine-alert
60