release.sh 4.4 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5
#!/bin/bash
#
# Generate the deb package for ubunt, or rpm package for centos, or tar.gz package for other linux os

set -e
L
lihui 已提交
6 7 8
# set -x

armver=$1
H
hzcheng 已提交
9 10 11 12

curr_dir=$(pwd)
script_dir="$(dirname $(readlink -f $0))"
top_dir="$(readlink -m ${script_dir}/..)"
S
slguan 已提交
13
versioninfo="${top_dir}/src/util/src/version.c"
H
hzcheng 已提交
14

P
plum-lihui 已提交
15 16 17 18 19
csudo=""
if command -v sudo > /dev/null; then
    csudo="sudo"
fi

H
hzcheng 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
function is_valid_version() {
    [ -z $1 ] && return 1 || :

    rx='^([0-9]+\.){3}(\*|[0-9]+)$'
    if [[ $1 =~ $rx ]]; then
        return 0
    fi

    return 1
}

function vercomp () {
    if [[ $1 == $2 ]]; then
        echo 0
        exit 0
    fi
    local IFS=.
    local i ver1=($1) ver2=($2)
    # fill empty fields in ver1 with zeros
    for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
        ver1[i]=0
    done

    for ((i=0; i<${#ver1[@]}; i++)); do
        if [[ -z ${ver2[i]} ]]
        then
            # fill empty fields in ver2 with zeros
            ver2[i]=0
        fi
        if ((10#${ver1[i]} > 10#${ver2[i]}))
        then
            echo 1
            exit 0
        fi
        if ((10#${ver1[i]} < 10#${ver2[i]}))
        then
            echo 2
            exit 0
        fi
    done
    echo 0
}

# 1. Read version information
version=$(cat ${versioninfo} | grep " version" | cut -d '"' -f2)
compatible_version=$(cat ${versioninfo} | grep " compatible_version" | cut -d '"' -f2)

while true; do
  read -p "Do you want to release a new version? [y/N]: " is_version_change

  if [[ ( "${is_version_change}" == "y") || ( "${is_version_change}" == "Y") ]]; then
      read -p "Please enter the new version: " tversion
      while true; do
          if (! is_valid_version $tversion) || [ "$(vercomp $tversion $version)" = '2' ]; then
              read -p "Please enter a correct version: " tversion
              continue
          fi
          version=${tversion}
          break
      done

      echo

      read -p "Enter the oldest compatible version: " tversion
      while true; do

          if [ -z $tversion ]; then
              break
          fi

          if (! is_valid_version $tversion) || [ "$(vercomp $version $tversion)" = '2' ]; then
              read -p "enter correct compatible version: " tversion
          else
              compatible_version=$tversion
              break
          fi
      done

      break
  elif [[ ( "${is_version_change}" == "n") || ( "${is_version_change}" == "N") ]]; then
      echo "Use old version: ${version} compatible version: ${compatible_version}."
      break
  else
      continue
  fi
done

# output the version info to the buildinfo file.
build_time=$(date +"%F %R")
echo "char version[64] = \"${version}\";" > ${versioninfo}
echo "char compatible_version[64] = \"${compatible_version}\";" >> ${versioninfo}
echo "char gitinfo[128] = \"$(git rev-parse --verify HEAD)\";"  >> ${versioninfo}
L
lihui 已提交
112
echo "char gitinfoOfInternal[128] = \"\";"  >> ${versioninfo}
H
hzcheng 已提交
113 114 115 116
echo "char buildinfo[512] = \"Built by ${USER} at ${build_time}\";"  >> ${versioninfo}

# 2. cmake executable file

L
lihui 已提交
117
compile_dir="${top_dir}/debug"
H
hzcheng 已提交
118
if [ -d ${compile_dir} ]; then
L
lihui 已提交
119
    ${csudo} rm -rf ${compile_dir}
H
hzcheng 已提交
120 121
fi

P
plum-lihui 已提交
122
${csudo} mkdir -p ${compile_dir}
H
hzcheng 已提交
123
cd ${compile_dir}
L
lihui 已提交
124 125 126

# arm only support lite ver
if [ -z "$armver" ]; then
S
slguan 已提交
127
  cmake ../
L
lihui 已提交
128
elif [ "$armver" == "arm64" ]; then
S
slguan 已提交
129
  cmake ../ -DARMVER=arm64
L
lihui 已提交
130
elif [ "$armver" == "arm32" ]; then
S
slguan 已提交
131
  cmake ../ -DARMVER=arm32
L
lihui 已提交
132 133 134 135 136 137
else
  echo "input parameter error!!!"
  return
fi

make
H
hzcheng 已提交
138 139 140 141

cd ${curr_dir}

# 3. judge the operating system type, then Call the corresponding script for packaging
H
[NONE]  
huili 已提交
142
#osinfo=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
H
hzcheng 已提交
143 144 145
#osinfo=$(cat /etc/os-release | grep "NAME" | cut -d '"' -f2)
#echo "osinfo: ${osinfo}"

H
[NONE]  
huili 已提交
146 147 148 149 150 151 152 153
echo "do deb package for the ubuntu system"
output_dir="${top_dir}/debs"
if [ -d ${output_dir} ]; then
  ${csudo} rm -rf ${output_dir}
fi  
${csudo} mkdir -p ${output_dir} 
cd ${script_dir}/deb
${csudo} ./makedeb.sh ${compile_dir} ${output_dir} ${version}
S
slguan 已提交
154 155
  
echo "do rpm package for the centos system"
H
[NONE]  
huili 已提交
156 157 158
output_dir="${top_dir}/rpms"
if [ -d ${output_dir} ]; then
  ${csudo} rm -rf ${output_dir}
H
hzcheng 已提交
159
fi
H
[NONE]  
huili 已提交
160 161 162
${csudo} mkdir -p ${output_dir}  
cd ${script_dir}/rpm
${csudo} ./makerpm.sh ${compile_dir} ${output_dir} ${version}
S
slguan 已提交
163 164

echo "do tar.gz package for all systems"  
H
hzcheng 已提交
165
cd ${script_dir}/tools
L
lihui 已提交
166 167
${csudo} ./makepkg.sh    ${compile_dir} ${version} "${build_time}" ${armver}
${csudo} ./makeclient.sh ${compile_dir} ${version} "${build_time}" ${armver}
H
hzcheng 已提交
168 169

# 4. Clean up temporary compile directories
P
plum-lihui 已提交
170
#${csudo} rm -rf ${compile_dir}
H
hzcheng 已提交
171