Files
be.ems/pkg.sh
2025-03-18 10:08:59 +08:00

67 lines
1.4 KiB
Bash

#!/bin/bash
# 前端目录
WebDir=../web
BuildWeb=""
# 当前目录
RootDir=${pwd}
# 默认版本值
VERSION="2.2503.2"
# usage
usage() {
echo "Usage: bash $0 [OPTION]"
echo
echo "Build Software Package OPTION:"
echo " -v Specify the version"
echo " -web Build Web ($WebDir)"
echo " -h Display this help message"
echo
exit 1
}
# Read command line arguments
while [[ $# -gt 0 ]]; do
case "$1" in
-v) VERSION="$2"; shift 2 ;;
-web) BuildWeb="build"; shift ;;
*) usage ;;
esac
done
# ===================
echo
# Determine if -web is passed in
if [ -n "$BuildWeb" ]; then
cd $WebDir
npm install --registry https://registry.npmmirror.com
npm run build
rm -rf /build/linux/usr/local/etc/omc/web
cp -rf dist /build/linux/usr/local/etc/omc/web
echo "web build dist copy to /build/linux/usr/local/etc/omc/web"
fi
cd $RootDir
# ===================
echo
cd ./sshsvc
make
cp -rf sshsvc ./build/linux/usr/local/bin/sshsvc
echo "go build sshsvc copy to /build/linux/usr/local/bin"
# ===================
echo
MOD_CONFIG="be.ems/src/framework/config"
go build -o omc -v -ldflags "-s -w -X '$MOD_CONFIG.Version=$VERSION' -X '$MOD_CONFIG.BuildTime=$(date)' -X '$MOD_CONFIG.GoVer=$(go version)'"
cp -rf omc ./build/linux/usr/local/bin/omc
echo "go build omc copy to /build/linux/usr/local/bin"
# ===================
echo
bash ./build/build.sh -v $VERSION