makepkg.sh 17.0 KB
Newer Older
wafwerar's avatar
wafwerar 已提交
1 2 3 4 5
#!/bin/bash
#
# Generate tar.gz package for all os system

set -e
6
# set -x
wafwerar's avatar
wafwerar 已提交
7 8 9 10 11 12 13 14 15 16 17 18

curr_dir=$(pwd)
compile_dir=$1
version=$2
build_time=$3
cpuType=$4
osType=$5
verMode=$6
verType=$7
pagMode=$8
versionComp=$9
dbName=${10}
X
xinsheng Ren 已提交
19 20 21 22
productName2="${11}"
serverName2="${12}d"
clientName2="${12}"
cusEmail2="${13}"
wafwerar's avatar
wafwerar 已提交
23 24 25 26 27 28 29 30

script_dir="$(dirname $(readlink -f $0))"
top_dir="$(readlink -f ${script_dir}/../..)"

productName="TDengine"
serverName="taosd"
clientName="taos"
configFile="taos.cfg"
sangshuduo's avatar
sangshuduo 已提交
31
tarName="package.tar.gz"
wafwerar's avatar
wafwerar 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44
dumpName="taosdump"
benchmarkName="taosBenchmark"
toolsName="taostools"
adapterName="taosadapter"
defaultPasswd="taosdata"

# create compressed install file.
build_dir="${compile_dir}/build"
code_dir="${top_dir}"
release_dir="${top_dir}/release"

#package_name='linux'
if [ "$verMode" == "cluster" ]; then
X
xinsheng Ren 已提交
45
  install_dir="${release_dir}/${productName2}-enterprise-server-${version}"
wafwerar's avatar
wafwerar 已提交
46
elif [ "$verMode" == "cloud" ]; then
X
xinsheng Ren 已提交
47
  install_dir="${release_dir}/${productName2}-cloud-server-${version}"
wafwerar's avatar
wafwerar 已提交
48
else
X
xinsheng Ren 已提交
49
  install_dir="${release_dir}/${productName2}-server-${version}"
wafwerar's avatar
wafwerar 已提交
50 51 52 53
fi

if [ -d ${top_dir}/tools/taos-tools/packaging/deb ]; then
  cd ${top_dir}/tools/taos-tools/packaging/deb
54

55
  taostools_ver=$(git for-each-ref --sort=taggerdate --format '%(tag)' refs/tags|grep -v taos | tail -1)
56
  [ -z "$taostools_ver" ] && taostools_ver="0.1.0"
X
xinsheng Ren 已提交
57
  taostools_install_dir="${release_dir}/${clientName2}Tools-${taostools_ver}"
wafwerar's avatar
wafwerar 已提交
58 59 60

  cd ${curr_dir}
else
X
xinsheng Ren 已提交
61
  taostools_install_dir="${release_dir}/${clientName2}Tools-${version}"
wafwerar's avatar
wafwerar 已提交
62 63 64 65 66 67 68
fi

# Directories and files
if [ "$pagMode" == "lite" ]; then
  strip ${build_dir}/bin/${serverName}
  strip ${build_dir}/bin/${clientName}
  # lite version doesn't include taosadapter,  which will lead to no restful interface
wafwerar's avatar
wafwerar 已提交
69
  bin_files="${build_dir}/bin/${serverName} ${build_dir}/bin/${clientName} ${script_dir}/remove.sh ${script_dir}/startPre.sh ${build_dir}/bin/taosBenchmark "
wafwerar's avatar
wafwerar 已提交
70 71
  taostools_bin_files=""
else
72 73 74 75 76
  if [ "$verMode" == "cloud" ]; then
    taostools_bin_files=" ${build_dir}/bin/taosdump \
      ${build_dir}/bin/taosBenchmark"
  else
    wget https://github.com/taosdata/grafanaplugin/releases/latest/download/TDinsight.sh -O ${build_dir}/bin/TDinsight.sh \
wafwerar's avatar
wafwerar 已提交
77 78
      && echo "TDinsight.sh downloaded!" \
      || echo "failed to download TDinsight.sh"
79 80 81 82 83 84 85 86 87 88 89
    # download TDinsight caches
    orig_pwd=$(pwd)
    tdinsight_caches=""
    cd ${build_dir}/bin/ && \
      chmod +x TDinsight.sh
    ./TDinsight.sh --download-only ||:
    #  tdinsight_caches=$(./TDinsight.sh --download-only | xargs -I printf "${build_dir}/bin/{} ")
    cd $orig_pwd
    echo "TDinsight caches: $tdinsight_caches"

    taostools_bin_files=" ${build_dir}/bin/taosdump \
wafwerar's avatar
wafwerar 已提交
90 91
      ${build_dir}/bin/taosBenchmark \
      ${build_dir}/bin/TDinsight.sh \
92 93
      ${build_dir}/bin/tdengine-datasource.zip \
      ${build_dir}/bin/tdengine-datasource.zip.md5sum"
94 95
  fi

96
  [ -f ${build_dir}/bin/taosx ] && taosx_bin="${build_dir}/bin/taosx"
H
Huo Linhe 已提交
97
  explorer_bin_files=$(find ${build_dir}/bin/ -name '*-explorer')
wafwerar's avatar
wafwerar 已提交
98 99 100 101

  bin_files="${build_dir}/bin/${serverName} \
      ${build_dir}/bin/${clientName} \
      ${taostools_bin_files} \
102
      ${taosx_bin} \
H
Huo Linhe 已提交
103
      ${explorer_bin_files} \
104
      ${build_dir}/bin/${clientName}adapter \
wafwerar's avatar
wafwerar 已提交
105
      ${build_dir}/bin/udfd \
wafwerar's avatar
wafwerar 已提交
106 107 108 109 110 111
      ${script_dir}/remove.sh \
      ${script_dir}/set_core.sh \
      ${script_dir}/startPre.sh \
      ${script_dir}/taosd-dump-cfg.gdb"
fi

112 113 114 115 116 117 118
if [ "$osType" == "Darwin" ]; then
    lib_files="${build_dir}/lib/libtaos.${version}.dylib"
    wslib_files="${build_dir}/lib/libtaosws.dylib"
else
    lib_files="${build_dir}/lib/libtaos.so.${version}"
    wslib_files="${build_dir}/lib/libtaosws.so"
fi
119
header_files="${code_dir}/include/client/taos.h ${code_dir}/include/common/taosdef.h ${code_dir}/include/util/taoserror.h ${code_dir}/include/libs/function/taosudf.h"
wafwerar's avatar
wafwerar 已提交
120

121
wsheader_files="${build_dir}/include/taosws.h"
122

wafwerar's avatar
wafwerar 已提交
123 124 125 126 127 128 129
if [ "$dbName" != "taos" ]; then
  cfg_dir="${top_dir}/../enterprise/packaging/cfg"
else
  cfg_dir="${top_dir}/packaging/cfg"
fi

install_files="${script_dir}/install.sh"
130
web_dir="${top_dir}/../enterprise/src/plugins/web"
wafwerar's avatar
wafwerar 已提交
131 132 133 134 135 136 137

init_file_deb=${script_dir}/../deb/taosd
init_file_rpm=${script_dir}/../rpm/taosd

# make directories.
mkdir -p ${install_dir}
mkdir -p ${install_dir}/inc && cp ${header_files} ${install_dir}/inc
138

139
[ -f ${wsheader_files} ] && cp ${wsheader_files} ${install_dir}/inc || :
140

wafwerar's avatar
wafwerar 已提交
141 142
mkdir -p ${install_dir}/cfg && cp ${cfg_dir}/${configFile} ${install_dir}/cfg/${configFile}

143 144
if [ -f "${compile_dir}/test/cfg/${clientName}adapter.toml" ]; then
  cp ${compile_dir}/test/cfg/${clientName}adapter.toml ${install_dir}/cfg || :
wafwerar's avatar
wafwerar 已提交
145 146
fi

147 148
if [ -f "${compile_dir}/test/cfg/${clientName}adapter.service" ]; then
  cp ${compile_dir}/test/cfg/${clientName}adapter.service ${install_dir}/cfg || :
wafwerar's avatar
wafwerar 已提交
149 150 151 152 153 154 155 156 157
fi

if [ -f "${cfg_dir}/${serverName}.service" ]; then
  cp ${cfg_dir}/${serverName}.service ${install_dir}/cfg || :
fi

mkdir -p ${install_dir}/bin && cp ${bin_files} ${install_dir}/bin && chmod a+x ${install_dir}/bin/* || :
mkdir -p ${install_dir}/init.d && cp ${init_file_deb} ${install_dir}/init.d/${serverName}.deb
mkdir -p ${install_dir}/init.d && cp ${init_file_rpm} ${install_dir}/init.d/${serverName}.rpm
158
# mkdir -p ${install_dir}/share && cp -rf ${build_dir}/share/{etc,srv} ${install_dir}/share ||:
wafwerar's avatar
wafwerar 已提交
159 160

if [ $adapterName != "taosadapter" ]; then
161
  mv ${install_dir}/cfg/${clientName2}adapter.toml ${install_dir}/cfg/$adapterName.toml
wafwerar's avatar
wafwerar 已提交
162 163 164
  sed -i "s/path = \"\/var\/log\/taos\"/path = \"\/var\/log\/${productName}\"/g" ${install_dir}/cfg/$adapterName.toml
  sed -i "s/password = \"taosdata\"/password = \"${defaultPasswd}\"/g" ${install_dir}/cfg/$adapterName.toml

165
  mv ${install_dir}/cfg/${clientName2}adapter.service ${install_dir}/cfg/$adapterName.service
wafwerar's avatar
wafwerar 已提交
166 167 168 169
  sed -i "s/TDengine/${productName}/g" ${install_dir}/cfg/$adapterName.service
  sed -i "s/taosAdapter/${adapterName}/g" ${install_dir}/cfg/$adapterName.service
  sed -i "s/taosadapter/${adapterName}/g" ${install_dir}/cfg/$adapterName.service

170
  mv ${install_dir}/bin/${clientName2}adapter ${install_dir}/bin/${adapterName}
wafwerar's avatar
wafwerar 已提交
171 172 173 174 175 176 177 178 179
  mv ${install_dir}/bin/taosd-dump-cfg.gdb ${install_dir}/bin/${serverName}-dump-cfg.gdb
fi

if [ -n "${taostools_bin_files}" ]; then
    mkdir -p ${taostools_install_dir} || echo -e "failed to create ${taostools_install_dir}"
    mkdir -p ${taostools_install_dir}/bin \
        && cp ${taostools_bin_files} ${taostools_install_dir}/bin \
        && chmod a+x ${taostools_install_dir}/bin/* || :

sangshuduo's avatar
sangshuduo 已提交
180 181
    if [ -f ${top_dir}/tools/taos-tools/packaging/tools/install-tools.sh ]; then
        cp ${top_dir}/tools/taos-tools/packaging/tools/install-tools.sh \
wafwerar's avatar
wafwerar 已提交
182
            ${taostools_install_dir}/ > /dev/null \
sangshuduo's avatar
sangshuduo 已提交
183 184
            && chmod a+x ${taostools_install_dir}/install-tools.sh \
            || echo -e "failed to copy install-tools.sh"
wafwerar's avatar
wafwerar 已提交
185
    else
sangshuduo's avatar
sangshuduo 已提交
186
        echo -e "install-tools.sh not found"
wafwerar's avatar
wafwerar 已提交
187 188
    fi

sangshuduo's avatar
sangshuduo 已提交
189 190
    if [ -f ${top_dir}/tools/taos-tools/packaging/tools/uninstall-tools.sh ]; then
        cp ${top_dir}/tools/taos-tools/packaging/tools/uninstall-tools.sh \
wafwerar's avatar
wafwerar 已提交
191
            ${taostools_install_dir}/ > /dev/null \
sangshuduo's avatar
sangshuduo 已提交
192 193
            && chmod a+x ${taostools_install_dir}/uninstall-tools.sh \
            || echo -e "failed to copy uninstall-tools.sh"
wafwerar's avatar
wafwerar 已提交
194
    else
sangshuduo's avatar
sangshuduo 已提交
195
        echo -e "uninstall-tools.sh not found"
wafwerar's avatar
wafwerar 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
    fi

    if [ -f ${build_dir}/lib/libavro.so.23.0.0 ]; then
        mkdir -p ${taostools_install_dir}/avro/{lib,lib/pkgconfig} || echo -e "failed to create ${taostools_install_dir}/avro"
        cp ${build_dir}/lib/libavro.* ${taostools_install_dir}/avro/lib
        cp ${build_dir}/lib/pkgconfig/avro-c.pc ${taostools_install_dir}/avro/lib/pkgconfig
    fi
fi

if [ -f ${build_dir}/bin/jemalloc-config ]; then
  mkdir -p ${install_dir}/jemalloc/{bin,lib,lib/pkgconfig,include/jemalloc,share/doc/jemalloc,share/man/man3}
  cp ${build_dir}/bin/jemalloc-config ${install_dir}/jemalloc/bin
  if [ -f ${build_dir}/bin/jemalloc.sh ]; then
    cp ${build_dir}/bin/jemalloc.sh ${install_dir}/jemalloc/bin
  fi
  if [ -f ${build_dir}/bin/jeprof ]; then
    cp ${build_dir}/bin/jeprof ${install_dir}/jemalloc/bin
  fi
  if [ -f ${build_dir}/include/jemalloc/jemalloc.h ]; then
    cp ${build_dir}/include/jemalloc/jemalloc.h ${install_dir}/jemalloc/include/jemalloc
  fi
  if [ -f ${build_dir}/lib/libjemalloc.so.2 ]; then
    cp ${build_dir}/lib/libjemalloc.so.2 ${install_dir}/jemalloc/lib
    ln -sf libjemalloc.so.2 ${install_dir}/jemalloc/lib/libjemalloc.so
  fi
  if [ -f ${build_dir}/lib/libjemalloc.a ]; then
    cp ${build_dir}/lib/libjemalloc.a ${install_dir}/jemalloc/lib
  fi
  if [ -f ${build_dir}/lib/libjemalloc_pic.a ]; then
    cp ${build_dir}/lib/libjemalloc_pic.a ${install_dir}/jemalloc/lib
  fi
  if [ -f ${build_dir}/lib/pkgconfig/jemalloc.pc ]; then
    cp ${build_dir}/lib/pkgconfig/jemalloc.pc ${install_dir}/jemalloc/lib/pkgconfig
  fi
  if [ -f ${build_dir}/share/doc/jemalloc/jemalloc.html ]; then
    cp ${build_dir}/share/doc/jemalloc/jemalloc.html ${install_dir}/jemalloc/share/doc/jemalloc
  fi
  if [ -f ${build_dir}/share/man/man3/jemalloc.3 ]; then
    cp ${build_dir}/share/man/man3/jemalloc.3 ${install_dir}/jemalloc/share/man/man3
  fi
fi

if [ "$verMode" == "cluster" ]; then
  sed 's/verMode=edge/verMode=cluster/g' ${install_dir}/bin/remove.sh >>remove_temp.sh
X
xinsheng Ren 已提交
240 241
  sed -i "s/serverName2=\"taosd\"/serverName2=\"${serverName2}\"/g" remove_temp.sh
  sed -i "s/clientName2=\"taos\"/clientName2=\"${clientName2}\"/g" remove_temp.sh
242
  sed -i "s/configFile2=\"taos.cfg\"/configFile2=\"${clientName2}.cfg\"/g" remove_temp.sh
X
xinsheng Ren 已提交
243
  sed -i "s/productName2=\"TDengine\"/productName2=\"${productName2}\"/g" remove_temp.sh
244 245
  cusDomain=`echo "${cusEmail2}" | sed 's/^[^@]*@//'`
  sed -i "s/emailName2=\"taosdata.com\"/emailName2=\"${cusDomain}\"/g" remove_temp.sh
wafwerar's avatar
wafwerar 已提交
246
  mv remove_temp.sh ${install_dir}/bin/remove.sh
wafwerar's avatar
wafwerar 已提交
247 248 249 250
fi
if [ "$verMode" == "cloud" ]; then
  sed 's/verMode=edge/verMode=cloud/g' ${install_dir}/bin/remove.sh >>remove_temp.sh
  mv remove_temp.sh ${install_dir}/bin/remove.sh
wafwerar's avatar
wafwerar 已提交
251 252 253
fi

cd ${install_dir}
254 255 256 257 258 259
if [ "$osType" != "Darwin" ]; then
    tar -zcv -f ${tarName} * --remove-files || :
else
    tar -zcv -f ${tarName} * || :
fi

wafwerar's avatar
wafwerar 已提交
260 261 262 263 264 265 266 267
exitcode=$?
if [ "$exitcode" != "0" ]; then
  echo "tar ${tarName} error !!!"
  exit $exitcode
fi

cd ${curr_dir}
cp ${install_files} ${install_dir}
X
xinsheng Ren 已提交
268
cp ${install_dir}/install.sh install_temp.sh
wafwerar's avatar
wafwerar 已提交
269
if [ "$verMode" == "cluster" ]; then
X
xinsheng Ren 已提交
270 271 272
  sed -i 's/verMode=edge/verMode=cluster/g' install_temp.sh
  sed -i "s/serverName2=\"taosd\"/serverName2=\"${serverName2}\"/g" install_temp.sh
  sed -i "s/clientName2=\"taos\"/clientName2=\"${clientName2}\"/g" install_temp.sh
273
  sed -i "s/configFile2=\"taos.cfg\"/configFile2=\"${clientName2}.cfg\"/g" install_temp.sh
X
xinsheng Ren 已提交
274
  sed -i "s/productName2=\"TDengine\"/productName2=\"${productName2}\"/g" install_temp.sh
275 276
  cusDomain=`echo "${cusEmail2}" | sed 's/^[^@]*@//'`
  sed -i "s/emailName2=\"taosdata.com\"/emailName2=\"${cusDomain}\"/g" install_temp.sh
wafwerar's avatar
wafwerar 已提交
277 278
  mv install_temp.sh ${install_dir}/install.sh
fi
wafwerar's avatar
wafwerar 已提交
279
if [ "$verMode" == "cloud" ]; then
X
xinsheng Ren 已提交
280
  sed -i 's/verMode=edge/verMode=cloud/g' install_temp.sh
wafwerar's avatar
wafwerar 已提交
281 282
  mv install_temp.sh ${install_dir}/install.sh
fi
wafwerar's avatar
wafwerar 已提交
283
if [ "$pagMode" == "lite" ]; then
X
xinsheng Ren 已提交
284
  sed -i 's/pagMode=full/pagMode=lite/g' install_temp.sh
wafwerar's avatar
wafwerar 已提交
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
  mv install_temp.sh ${install_dir}/install.sh
fi
chmod a+x ${install_dir}/install.sh

if [[ $dbName == "taos" ]]; then
  # Copy example code
  mkdir -p ${install_dir}/examples
  examples_dir="${top_dir}/examples"
  cp -r ${examples_dir}/c ${install_dir}/examples
  if [[ "$pagMode" != "lite" ]] && [[ "$cpuType" != "aarch32" ]]; then
    if [ -d ${examples_dir}/JDBC/connectionPools/target ]; then
      rm -rf ${examples_dir}/JDBC/connectionPools/target
    fi
    if [ -d ${examples_dir}/JDBC/JDBCDemo/target ]; then
      rm -rf ${examples_dir}/JDBC/JDBCDemo/target
    fi
    if [ -d ${examples_dir}/JDBC/mybatisplus-demo/target ]; then
      rm -rf ${examples_dir}/JDBC/mybatisplus-demo/target
    fi
    if [ -d ${examples_dir}/JDBC/springbootdemo/target ]; then
      rm -rf ${examples_dir}/JDBC/springbootdemo/target
    fi
    if [ -d ${examples_dir}/JDBC/SpringJdbcTemplate/target ]; then
      rm -rf ${examples_dir}/JDBC/SpringJdbcTemplate/target
    fi
    if [ -d ${examples_dir}/JDBC/taosdemo/target ]; then
      rm -rf ${examples_dir}/JDBC/taosdemo/target
    fi

    cp -r ${examples_dir}/JDBC ${install_dir}/examples
    cp -r ${examples_dir}/matlab ${install_dir}/examples
    cp -r ${examples_dir}/python ${install_dir}/examples
    cp -r ${examples_dir}/R ${install_dir}/examples
    cp -r ${examples_dir}/go ${install_dir}/examples
    cp -r ${examples_dir}/nodejs ${install_dir}/examples
    cp -r ${examples_dir}/C# ${install_dir}/examples
    mkdir -p ${install_dir}/examples/taosbenchmark-json && cp ${examples_dir}/../tools/taos-tools/example/* ${install_dir}/examples/taosbenchmark-json
  fi
323 324

  # Add web files
W
wenzhouwww@live.cn 已提交
325 326 327
  if [ "$verMode" == "cluster" ] || [ "$verMode" == "cloud" ]; then
    if [ -d "${web_dir}/admin" ] ; then
      mkdir -p ${install_dir}/share/
328
      cp -Rfap ${web_dir}/admin ${install_dir}/share/
W
wenzhouwww@live.cn 已提交
329
      cp ${web_dir}/png/taos.png ${install_dir}/share/admin/images/taos.png
330
      cp -rf ${build_dir}/share/{etc,srv} ${install_dir}/share ||:
W
wenzhouwww@live.cn 已提交
331 332 333
    else
      echo "directory not found for enterprise release: ${web_dir}/admin"
    fi
334
  fi
wafwerar's avatar
wafwerar 已提交
335 336 337 338
fi

# Copy driver
mkdir -p ${install_dir}/driver && cp ${lib_files} ${install_dir}/driver && echo "${versionComp}" >${install_dir}/driver/vercomp.txt
339
[ -f ${wslib_files} ] && cp ${wslib_files} ${install_dir}/driver || :
wafwerar's avatar
wafwerar 已提交
340 341

# Copy connector
342
if [ "$verMode" == "cluster" ]; then
wafwerar's avatar
wafwerar 已提交
343 344 345
    connector_dir="${code_dir}/connector"
    mkdir -p ${install_dir}/connector
    if [[ "$pagMode" != "lite" ]] && [[ "$cpuType" != "aarch32" ]]; then
346 347 348
        tmp_pwd=`pwd`
    	  cd ${install_dir}/connector
    	  if [ ! -d taos-connector-jdbc ];then
X
xleili 已提交
349
          	git clone -b 3.2.1 --depth=1 https://github.com/taosdata/taos-connector-jdbc.git ||:
350 351 352 353 354 355 356 357 358 359
    	  fi
    	  cd taos-connector-jdbc
    	  mvn clean package -Dmaven.test.skip=true
    	  echo  ${build_dir}/lib/
    	  cp target/*.jar  ${build_dir}/lib/
    	  cd ${install_dir}/connector
    	  rm -rf taos-connector-jdbc
    	  cd ${tmp_pwd}
   	    jars=$(ls ${build_dir}/lib/*.jar 2>/dev/null|wc -l)
        [ "${jars}" != "0" ] && cp ${build_dir}/lib/*.jar ${install_dir}/connector || :
360 361 362
        git clone --depth 1 https://github.com/taosdata/driver-go ${install_dir}/connector/go
        rm -rf ${install_dir}/connector/go/.git ||:

wafwerar's avatar
wafwerar 已提交
363 364 365 366 367 368 369 370 371
        git clone --depth 1 https://github.com/taosdata/taos-connector-python ${install_dir}/connector/python
        rm -rf ${install_dir}/connector/python/.git ||:

        git clone --depth 1 https://github.com/taosdata/taos-connector-node ${install_dir}/connector/nodejs
        rm -rf ${install_dir}/connector/nodejs/.git ||:

        git clone --depth 1 https://github.com/taosdata/taos-connector-dotnet ${install_dir}/connector/dotnet
        rm -rf ${install_dir}/connector/dotnet/.git ||:

372
        git clone --depth 1 https://github.com/taosdata/taos-connector-rust ${install_dir}/connector/rust
wafwerar's avatar
wafwerar 已提交
373
        rm -rf ${install_dir}/connector/rust/.git ||:
374

wafwerar's avatar
wafwerar 已提交
375 376 377 378 379 380
        # cp -r ${connector_dir}/python ${install_dir}/connector
        # cp -r ${connector_dir}/nodejs ${install_dir}/connector
    fi
fi

# Copy release note
wafwerar's avatar
wafwerar 已提交
381
# cp ${script_dir}/release_note ${install_dir}
wafwerar's avatar
wafwerar 已提交
382 383 384 385 386 387 388 389

# exit 1

cd ${release_dir}

#  install_dir has been distinguishes  cluster from  edege, so comments this code
pkg_name=${install_dir}-${osType}-${cpuType}

390 391
versionCompFirst=$(echo ${versionComp} | awk -F '.' '{print $1}')
taostools_pkg_name=${taostools_install_dir}-${osType}-${cpuType}-comp${versionCompFirst}
wafwerar's avatar
wafwerar 已提交
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416

# if [ "$verMode" == "cluster" ]; then
#   pkg_name=${install_dir}-${osType}-${cpuType}
# elif [ "$verMode" == "edge" ]; then
#   pkg_name=${install_dir}-${osType}-${cpuType}
# else
#   echo "unknow verMode, nor cluster or edge"
#   exit 1
# fi

if [[ "$verType" == "beta" ]] || [[ "$verType" == "preRelease" ]]; then
  pkg_name=${install_dir}-${verType}-${osType}-${cpuType}
  taostools_pkg_name=${taostools_install_dir}-${verType}-${osType}-${cpuType}
elif [ "$verType" == "stable" ]; then
  pkg_name=${pkg_name}
  taostools_pkg_name=${taostools_pkg_name}
else
  echo "unknow verType, nor stabel or beta"
  exit 1
fi

if [ "$pagMode" == "lite" ]; then
  pkg_name=${pkg_name}-Lite
fi

417 418 419 420 421 422 423 424 425

if [ "$osType" != "Darwin" ]; then
    tar -zcv -f "$(basename ${pkg_name}).tar.gz" "$(basename ${install_dir})" --remove-files || :
else
    tar -zcv -f "$(basename ${pkg_name}).tar.gz" "$(basename ${install_dir})" || :
    rm -rf ${install_dir} ||:
    ([ -d build-taoskeeper ] && rm -rf build-taoskeeper ) ||:
fi

wafwerar's avatar
wafwerar 已提交
426 427 428 429 430 431 432 433
exitcode=$?
if [ "$exitcode" != "0" ]; then
  echo "tar ${pkg_name}.tar.gz error !!!"
  exit $exitcode
fi

if [ -n "${taostools_bin_files}" ]; then
    wget https://github.com/taosdata/grafanaplugin/releases/latest/download/TDinsight.sh -O ${taostools_install_dir}/bin/TDinsight.sh && echo "TDinsight.sh downloaded!"|| echo "failed to download TDinsight.sh"
434 435 436 437 438 439
    if [ "$osType" != "Darwin" ]; then
        tar -zcv -f "$(basename ${taostools_pkg_name}).tar.gz" "$(basename ${taostools_install_dir})" --remove-files || :
    else
        tar -zcv -f "$(basename ${taostools_pkg_name}).tar.gz" "$(basename ${taostools_install_dir})" || :
        rm -rf ${taostools_install_dir} ||:
    fi
wafwerar's avatar
wafwerar 已提交
440 441 442 443 444 445 446
    exitcode=$?
    if [ "$exitcode" != "0" ]; then
        echo "tar ${taostools_pkg_name}.tar.gz error !!!"
        exit $exitcode
    fi
fi

447
cd ${curr_dir}