1 Star 0 Fork 21

xingyoutiandi/polaris

forked from PolarisMesh/polaris 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.sh 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
# Tencent is pleased to support the open source community by making Polaris available.
#
# Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
#
# Licensed under the BSD 3-Clause License (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://opensource.org/licenses/BSD-3-Clause
#
# Unless required by applicable law or agreed to in writing, software distributed
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.
#!/bin/bash
set -e
if [[ $(uname) == 'Darwin' ]]; then
realpath() {
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}
md5sum() {
md5 $*
}
fi
workdir=$(dirname $(realpath $0))
version=$(cat version 2>/dev/null)
bin_name="polaris-server"
if [ $# == 1 ]; then
version=$1
fi
if [ "${GOOS}" == "windows" ]; then
bin_name="polaris-server.exe"
fi
if [ "${GOOS}" == "" ]; then
GOOS=$(go env GOOS)
fi
if [ "${GOARCH}" == "" ]; then
GOARCH=$(go env GOARCH)
fi
folder_name="polaris-server-release_${version}.${GOOS}.${GOARCH}"
pkg_name="${folder_name}.zip"
echo "GOOS is ${GOOS}, binary name is ${bin_name}"
cd $workdir
# 清理环境
rm -rf ${folder_name}
rm -f "${pkg_name}"
rm -f ${bin_name}
# 禁止 CGO_ENABLED 参数打开
export CGO_ENABLED=0
build_date=$(date "+%Y%m%d.%H%M%S")
package="github.com/polarismesh/polaris-server/common/version"
i18n_res="apiserver/httpserver/i18n"
sqldb_res="store/sqldb"
go build -o ${bin_name} -ldflags="-X ${package}.Version=${version} -X ${package}.BuildDate=${build_date}"
# 打包
mkdir -p ${folder_name}
cp ${bin_name} ${folder_name}
mkdir -p ${folder_name}/${sqldb_res}
cp -r ${sqldb_res}/scripts ${folder_name}/${sqldb_res}
cp polaris-server.yaml ${folder_name}
cp -r tool ${folder_name}/
mkdir -p ${folder_name}/${i18n_res}
cp -r ${i18n_res}/*.toml ${folder_name}/${i18n_res}
zip -r "${pkg_name}" ${folder_name}
md5sum ${pkg_name} >"${pkg_name}.md5sum"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wangen2009/polaris.git
git@gitee.com:wangen2009/polaris.git
wangen2009
polaris
polaris
main

搜索帮助

D67c1975 1850385 1daf7b77 1850385