修改编译脚本
continuous-integration/drone/push Build is passing Details

This commit is contained in:
giaogiao 2023-09-25 16:46:19 +08:00
parent 41b1c9dc25
commit 74cb6a826c
1 changed files with 1 additions and 1 deletions

View File

@ -45,6 +45,6 @@ do
echo "Start compiling the system:${array[0]} architecture:${array[1]}"
# echo "CGO_ENABLED=0 GOOS=${array[0]} GOARCH=${array[1]} go build -o /root/web/${array[0]}_${array[1]}_main${extension}"
# CGO_ENABLED=0 GOOS=${array[0]} GOARCH=${array[1]} go build -o /root/web/${array[0]}_${array[1]}_main${extension}
CGO_ENABLED=1 GOOS=${array[0]} GOARCH=${array[1]} go build -linkmode external -extldflags '-static' -s -w -o ${array[0]}_${array[1]}_main${extension}
CGO_ENABLED=1 GOOS=${array[0]} GOARCH=${array[1]} go build -ldflags="-w -s" -o ${array[0]}_${array[1]}_main${extension}
cp ${array[0]}_${array[1]}_main${extension} /root/web/
done