更新 .gitea/workflows/build.yaml
All checks were successful
Build Multi-Platform Binaries / build-frontend (push) Successful in 30s
Build Multi-Platform Binaries / build-binaries (amd64, darwin, client, false) (push) Successful in 34s
Build Multi-Platform Binaries / build-binaries (amd64, darwin, server, false) (push) Successful in 51s
Build Multi-Platform Binaries / build-binaries (amd64, linux, client, true) (push) Successful in 40s
Build Multi-Platform Binaries / build-binaries (amd64, linux, server, true) (push) Successful in 1m1s
Build Multi-Platform Binaries / build-binaries (amd64, windows, client, true) (push) Successful in 1m8s
Build Multi-Platform Binaries / build-binaries (amd64, windows, server, true) (push) Successful in 59s
Build Multi-Platform Binaries / build-binaries (arm64, darwin, client, false) (push) Successful in 34s
Build Multi-Platform Binaries / build-binaries (arm64, darwin, server, false) (push) Successful in 51s
Build Multi-Platform Binaries / build-binaries (arm64, linux, client, true) (push) Successful in 40s
Build Multi-Platform Binaries / build-binaries (arm64, linux, server, true) (push) Successful in 1m3s
Build Multi-Platform Binaries / build-binaries (arm64, windows, client, true) (push) Successful in 36s
Build Multi-Platform Binaries / build-binaries (arm64, windows, server, true) (push) Successful in 52s

This commit is contained in:
2025-12-27 00:50:07 +08:00
parent 444d2b0a97
commit 08aa20445d

View File

@@ -9,11 +9,11 @@ on:
- '.gitea/workflows/**'
jobs:
prepare-all:
runs-on: node-latest
build-frontend:
runs-on: node-latest # 使用 Node.js 专用镜像
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build Frontend
run: |
@@ -21,58 +21,90 @@ jobs:
npm ci
npm run build
- name: Move Frontend to Go Folder
run: |
# 1. 确保目标目录存在
mkdir -p internal/server/app/dist
# 2. 拷贝构建好的静态资源
cp -r web/dist/* internal/server/app/dist/
# 3. 【关键步骤】删除 node_modules避免它们被上传
rm -rf web/node_modules
# 4. (可选) 如果你不需要 web 源码,也可以删掉源码目录只留 dist
# rm -rf web/src
- name: Upload Integrated Workspace
- name: Upload Frontend Artifact
uses: actions/upload-artifact@v3
with:
name: full-workspace
# 依然上传根目录,但此时 node_modules 已经没了
path: .
name: frontend-dist
path: web/dist
retention-days: 1
build-binaries:
needs: prepare-all
runs-on: golang-latest
needs: build-frontend
runs-on: golang-latest # 使用 Golang 专用镜像
strategy:
max-parallel: 2 # 极其重要:在 v3 且服务器不稳的情况下,建议限制到 2 个并发
matrix:
include:
- { goos: linux, goarch: amd64, target: server, upx: true }
- { goos: linux, goarch: amd64, target: client, upx: true }
- { goos: linux, goarch: arm64, target: server, upx: true }
- { goos: linux, goarch: arm64, target: client, upx: true }
- { goos: darwin, goarch: amd64, target: server, upx: false }
- { goos: darwin, goarch: amd64, target: client, upx: false }
- { goos: windows, goarch: amd64, target: server, upx: true }
- { goos: windows, goarch: amd64, target: client, upx: true }
# (根据需要缩减或保留 matrix)
- goos: linux
goarch: amd64
target: server
upx: true
- goos: linux
goarch: amd64
target: client
upx: true
- goos: linux
goarch: arm64
target: server
upx: true
- goos: linux
goarch: arm64
target: client
upx: true
- goos: darwin
goarch: amd64
target: server
upx: false
- goos: darwin
goarch: amd64
target: client
upx: false
- goos: darwin
goarch: arm64
target: server
upx: false
- goos: darwin
goarch: arm64
target: client
upx: false
- goos: windows
goarch: amd64
target: server
upx: true
- goos: windows
goarch: amd64
target: client
upx: true
- goos: windows
goarch: arm64
target: server
upx: true
- goos: windows
goarch: arm64
target: client
upx: true
steps:
- name: Install Node.js
- name: Install Node.js for Actions
run: |
# 尝试兼容 Alpine (apk) 和 Debian/Ubuntu (apt)
if command -v apk > /dev/null; then
apk add --no-cache nodejs
elif command -v apt-get > /dev/null; then
apt-get update && apt-get install -y nodejs
else
echo "Unknown package manager"
exit 1
fi
- name: Set Node IPv4 Priority
run: echo "NODE_OPTIONS=--dns-result-order=ipv4first" >> $GITHUB_ENV
- name: Download Workspace
- name: Checkout code
uses: actions/checkout@v4
- name: Download Frontend Artifact
uses: actions/download-artifact@v3
with:
name: full-workspace
path: .
name: frontend-dist
path: internal/server/app/dist
- name: Build Binary
env:
@@ -84,16 +116,17 @@ jobs:
if [ "${{ matrix.goos }}" = "windows" ]; then
OUTPUT_NAME="${OUTPUT_NAME}.exe"
fi
go build -ldflags="-s -w" -o "${OUTPUT_NAME}" ./cmd/${{ matrix.target }}
echo "BINARY_NAME=${OUTPUT_NAME}" >> $GITHUB_ENV
- name: Install and Run UPX
if: matrix.upx == true
run: |
(apk add --no-cache upx || apt-get update && apt-get install -y upx-ucl)
apk add --no-cache upx || apt-get update && apt-get install -y upx-ucl
upx -9 "${{ env.BINARY_NAME }}" || true
- name: Upload Binary
- name: Upload Individual Binary
uses: actions/upload-artifact@v3
with:
name: ${{ env.BINARY_NAME }}