mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 05:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
function build() {
 | 
						|
	ROOT=$(dirname $0)
 | 
						|
	NAME="edge-admin"
 | 
						|
	DIST=$ROOT/"../dist/${NAME}"
 | 
						|
	OS=${1}
 | 
						|
	ARCH=${2}
 | 
						|
 | 
						|
	if [ -z $OS ]; then
 | 
						|
		echo "usage: build.sh OS ARCH"
 | 
						|
		exit
 | 
						|
	fi
 | 
						|
	if [ -z $ARCH ]; then
 | 
						|
		echo "usage: build.sh OS ARCH"
 | 
						|
		exit
 | 
						|
	fi
 | 
						|
 | 
						|
	VERSION=$(lookup-version $ROOT/../internal/const/const.go)
 | 
						|
	ZIP="${NAME}-${OS}-${ARCH}-v${VERSION}.zip"
 | 
						|
 | 
						|
	# check edge-api
 | 
						|
	APINodeVersion=$(lookup-version $ROOT"/../../EdgeAPI/internal/const/const.go")
 | 
						|
	echo "building edge-api v${APINodeVersion} ..."
 | 
						|
	EDGE_API_BUILD_SCRIPT=$ROOT"/../../EdgeAPI/build/build.sh"
 | 
						|
	if [ ! -f $EDGE_API_BUILD_SCRIPT ]; then
 | 
						|
		echo "unable to find edge-api build script 'EdgeAPI/build/build.sh'"
 | 
						|
		exit
 | 
						|
	fi
 | 
						|
 | 
						|
	cd $ROOT"/../../EdgeAPI/build"
 | 
						|
	echo "=============================="
 | 
						|
	./build.sh $OS $ARCH
 | 
						|
	echo "=============================="
 | 
						|
	cd -
 | 
						|
 | 
						|
	# create dir & copy files
 | 
						|
	echo "copying ..."
 | 
						|
	if [ ! -d $DIST ]; then
 | 
						|
		mkdir $DIST
 | 
						|
		mkdir $DIST/bin
 | 
						|
		mkdir $DIST/configs
 | 
						|
		mkdir $DIST/logs
 | 
						|
	fi
 | 
						|
 | 
						|
	cp -R $ROOT/../web $DIST/
 | 
						|
	rm -f $DIST/web/tmp/*
 | 
						|
	cp $ROOT/configs/server.template.yaml $DIST/configs/
 | 
						|
 | 
						|
	EDGE_API_ZIP_FILE=$ROOT"/../../EdgeAPI/dist/edge-api-${OS}-${ARCH}-v${APINodeVersion}.zip"
 | 
						|
	cp $EDGE_API_ZIP_FILE $DIST/
 | 
						|
	cd $DIST/
 | 
						|
	unzip -q $(basename $EDGE_API_ZIP_FILE)
 | 
						|
	rm -f $(basename $EDGE_API_ZIP_FILE)
 | 
						|
	cd -
 | 
						|
 | 
						|
	# build
 | 
						|
	echo "building "${NAME}" ..."
 | 
						|
	env GOOS=$OS GOARCH=$GOARCH go build -ldflags="-s -w" -tags demo -o $DIST/bin/${NAME} $ROOT/../cmd/edge-admin/main.go
 | 
						|
 | 
						|
	# delete hidden files
 | 
						|
	find $DIST -name ".DS_Store" -delete
 | 
						|
	find $DIST -name ".gitignore" -delete
 | 
						|
 | 
						|
	# zip
 | 
						|
	echo "zip files ..."
 | 
						|
	cd "${DIST}/../" || exit
 | 
						|
	if [ -f "${ZIP}" ]; then
 | 
						|
		rm -f "${ZIP}"
 | 
						|
	fi
 | 
						|
	zip -r -X -q "${ZIP}" ${NAME}/
 | 
						|
	rm -rf ${NAME}
 | 
						|
	cd - || exit
 | 
						|
 | 
						|
	echo "[done]"
 | 
						|
}
 | 
						|
 | 
						|
function lookup-version() {
 | 
						|
	FILE=$1
 | 
						|
	VERSION_DATA=$(cat $FILE)
 | 
						|
	re="Version[ ]+=[ ]+\"([0-9.]+)\""
 | 
						|
	if [[ $VERSION_DATA =~ $re ]]; then
 | 
						|
		VERSION=${BASH_REMATCH[1]}
 | 
						|
		echo $VERSION
 | 
						|
	else
 | 
						|
		echo "could not match version"
 | 
						|
		exit
 | 
						|
	fi
 | 
						|
}
 | 
						|
 | 
						|
build $1 $2
 |