-
-
Notifications
You must be signed in to change notification settings - Fork 410
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
121 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#!/bin/bash | ||
|
||
#github action release.sh | ||
|
||
set -x | ||
function RETVAL() { | ||
rt=$1 | ||
if [ $rt != 0 ]; then | ||
echo $rt | ||
exit 1 | ||
fi | ||
} | ||
|
||
#当前目录 | ||
cpath=$(pwd) | ||
|
||
echo "copy二进制文件" | ||
cd $cpath/server | ||
# -tags osusergo,netgo,sqlite_omit_load_extension | ||
flags="-trimpath" | ||
ldflags="-s -w -extldflags '-static' -X main.appVer=$ver -X main.commitId=$(git rev-parse HEAD) -X main.date=$(date --iso-8601=seconds)" | ||
#github action | ||
gopath=$(go env GOPATH) | ||
go mod tidy | ||
# alpine3 | ||
apk add gcc musl-dev | ||
#使用 musl-dev 编译 | ||
docker run -q --rm -v $PWD:/app -v $gopath:/go -w /app --platform=linux/amd64 \ | ||
golang:1.20-alpine3.19 go build -o anylink_amd64 $flags -ldflags "$ldflags" | ||
./anylink_amd64 -v | ||
#arm64编译 | ||
docker run -q --rm -v $PWD:/app -v $gopath:/go -w /app --platform=linux/arm64 \ | ||
golang:1.20-alpine3.19 go build -o anylink_arm64 $flags -ldflags "$ldflags" | ||
./anylink_arm64 -v | ||
|
||
exit 0 | ||
|
||
cd $cpath | ||
|
||
echo "整理部署文件" | ||
deploy="anylink-deploy" | ||
rm -rf $deploy ${deploy}.tar.gz | ||
mkdir $deploy | ||
mkdir $deploy/log | ||
|
||
cp -r server/anylink $deploy | ||
cp -r server/bridge-init.sh $deploy | ||
cp -r server/conf $deploy | ||
|
||
cp -r systemd $deploy | ||
cp -r LICENSE $deploy | ||
cp -r home $deploy | ||
|
||
tar zcvf ${deploy}.tar.gz $deploy | ||
|
||
#注意使用root权限运行 | ||
#cd anylink-deploy | ||
#sudo ./anylink --conf="conf/server.toml" |