mirror of https://github.com/bjdgyc/anylink.git
20 lines
433 B
Bash
20 lines
433 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
#TODO 本地打包时使用镜像
|
|
if [[ $CN == "yes" ]]; then
|
|
sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories
|
|
export GOPROXY=https://goproxy.cn
|
|
fi
|
|
|
|
#apk add gcc musl-dev
|
|
|
|
cd /anylink
|
|
|
|
go mod tidy
|
|
go build -o anylink -trimpath \
|
|
-ldflags "-s -w -extldflags '-static' -X main.appVer=$appVer -X main.commitId=$commitId -X main.buildDate=$buildDate"
|
|
|
|
/anylink/anylink -v
|