7 Commits

Author SHA1 Message Date
大麦
e9a5f0a57e ci: 添加最小化测试 workflow
Some checks failed
Build Windows / Build Windows (push) Failing after 3s
Test Workflow / Test Environment (push) Successful in 3s
目的:
- 诊断 Gitea Actions 环境变量
- 检查可用命令
- 测试网络连接
2026-03-10 19:46:55 +08:00
大麦
075eedc13b ci: 使用 git clone 替代 actions/checkout
Some checks failed
Build Windows / Build Windows (push) Failing after 2s
原因:
- actions/checkout@v4 可能在 Gitea 中不兼容

修复:
- 使用 git clone 直接获取代码
- 使用 ${{ gitea.sha }} 指定 commit
2026-03-10 19:46:20 +08:00
大麦
5b3d1af415 ci: 修复 Gitea Actions 语法 + 添加 checkout 步骤
Some checks failed
Build Windows / Build Windows (push) Failing after 36s
问题:
- Gitea Actions 使用 ${{ gitea.xxx }} 而非 ${{ github.xxx }}
- 缺少 actions/checkout@v4 步骤获取代码

修复:
- 添加 checkout 步骤
- 修正 Gitea 语法
2026-03-10 19:40:12 +08:00
大麦
41508bcc7f ci: 修复 xwin 编译 - 添加 Windows MSVC 目标
Some checks failed
Build Windows / Build Windows (push) Failing after 8m30s
问题:
- xwin 编译时需要 x86_64-pc-windows-msvc 目标
- 错误:can't find crate for std

修复:
- 在安装 xwin 前添加 rustup target add x86_64-pc-windows-msvc
- 使用官方 xwin crate(非 git 版本)
- 添加 xwin download 步骤下载预编译 CRT
2026-03-10 19:28:48 +08:00
大麦
7af1c37577 ci: 使用 xwin 代替 MinGW
Some checks failed
Build Windows / Build Windows (push) Failing after 18m42s
问题:
- apt-get 安装 MinGW 依赖失败
- x86_64-w64-mingw32-posix-runtime 包不存在

解决方案:
- 使用 xwin 下载预编译的 MinGW CRT
- 使用 Cargo 安装 xwin 工具链
- 专门针对 Windows MSVC 编译

优势:
- 无需系统安装 MinGW
- 预编译的 CRT 更稳定
- Rust 标准的交叉编译方式
2026-03-10 18:23:17 +08:00
大麦
f8cd6b1d17 ci: 修复 MinGW 包名错误
Some checks failed
Build Windows / Build Windows (push) Failing after 15m35s
- 使用正确的 Debian 包名:gcc-mingw-w64-x86-64
- 移除不存在的 x86_64-w64-mingw32-posix-runtime 包
2026-03-10 18:03:23 +08:00
大麦
df48965e02 ci: 修复 Runner 无 sudo 问题
Some checks failed
Build Windows / Build Windows (push) Failing after 1m11s
- 移除所有 sudo 命令(容器以 root 运行)
- apt-get 不需要 sudo
2026-03-10 17:55:49 +08:00
2 changed files with 64 additions and 17 deletions

View File

@@ -11,43 +11,55 @@ jobs:
runs-on: ubuntu-latest
steps:
# 使用 git clone 而非 actions/checkout
- name: Clone repository
run: |
git clone ${GITEA_SERVER_URL}/${GITEA_REPOSITORY}.git .
git checkout ${GITEA_REF_NAME}
env:
GITEA_SERVER_URL: http://192.168.120.110:4000
GITEA_REPOSITORY: damai/readflow
GITEA_REF_NAME: ${{ github.ref_name }}
URL="${GITEA_SERVER_URL}/${GITEA_REPOSITORY}.git"
git clone $URL .
git checkout ${{ gitea.sha }}
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal
source $HOME/.cargo/env
rustup target add x86_64-pc-windows-gnu
# 添加 Windows MSVC 目标xwin 需要)
rustup target add x86_64-pc-windows-msvc
- name: Install MinGW
- name: Install xwin (MinGW CRT)
run: |
sudo apt-get update
sudo apt-get install -y mingw-w64 x86_64-w64-mingw32-posix-runtime libssl-dev pkg-config
source $HOME/.cargo/env
# 安装 xwin需要 x86_64-pc-windows-msvc 目标)
cargo install xwin
- name: Install GTK dependencies
- name: Download MinGW CRT
run: |
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev libjavascriptcoregtk-4.0-dev libsoup2.4-dev
source $HOME/.cargo/env
# 下载预编译的 MinGW CRT
xwin download --accept-license
- name: Build
run: |
source $HOME/.cargo/env
export CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER=x86_64-w64-mingw32-gcc
cargo build --release --target x86_64-pc-windows-gnu
# 设置 xwin 环境变量
export CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER=xwin-link
export CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_AR=xwin-lib
export CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_RANLIB=true
# 使用 xwin 提供的 SDK
export XWIN_PATH=$HOME/.cache/xwin
cargo build --release --target x86_64-pc-windows-msvc
- name: Package
run: |
mkdir -p dist
cp target/x86_64-pc-windows-gnu/release/readflow.exe dist/
cp target/x86_64-pc-windows-msvc/release/readflow.exe dist/
cd dist
echo "ReadFlow for Windows" > README.txt
echo "Version: ${GITEA_REF_NAME}" >> README.txt
echo "Built with: xwin + MSVC" >> README.txt
echo "Date: $(date)" >> README.txt
zip -r readflow-windows-x86_64.zip readflow.exe README.txt
- name: Upload to Release
@@ -67,7 +79,7 @@ jobs:
RELEASE_ID=$(curl -s -X POST "${URL}/api/v1/repos/${REPO}/releases" \
-H "Authorization: token ${TOKEN}" \
-H "Content-Type: application/json" \
-d "{\"tag_name\": \"${TAG}\", \"name\": \"ReadFlow ${TAG}\", \"body\": \"Release ${TAG}\", \"draft\": false}" \
-d "{\"tag_name\": \"${TAG}\", \"name\": \"ReadFlow ${TAG}\", \"body\": \"Release ${TAG}\\n\\nBuilt with xwin (预编译 MinGW CRT)\", \"draft\": false}" \
| jq -r '.id')
fi
@@ -84,4 +96,4 @@ jobs:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
GITEA_SERVER_URL: http://192.168.120.110:4000
GITEA_REPOSITORY: damai/readflow
GITEA_REF_NAME: ${{ github.ref_name }}
GITEA_REF_NAME: ${{ gitea.ref_name }}

35
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,35 @@
name: Test Workflow
on:
push:
tags:
- 'v*'
jobs:
test:
name: Test Environment
runs-on: ubuntu-latest
steps:
- name: Print environment variables
run: |
echo "=== Environment Variables ==="
echo "GITEA_REF_NAME: ${{ gitea.ref_name }}"
echo "GITEA_SHA: ${{ gitea.sha }}"
echo "GITEA_REPOSITORY: ${{ gitea.repository }}"
echo "GITEA_TOKEN: ${GITEA_TOKEN:0:10}..."
echo "GITEA_SERVER_URL: $GITEA_SERVER_URL"
echo "GITEA_REPOSITORY: $GITEA_REPOSITORY"
echo ""
# 检查可用命令
echo "=== Available Commands ==="
which git && echo "✅ git available" || echo "❌ git not found"
which curl && echo "✅ curl available" || echo "❌ curl not found"
which zip && echo "✅ zip available" || echo "❌ zip not found"
which jq && echo "✅ jq available" || echo "❌ jq not found"
echo ""
# 检查网络
echo "=== Network Test ==="
curl -I https://sh.rustup.rs | head -1