90 lines
3.3 KiB
YAML
90 lines
3.3 KiB
YAML
name: Build Windows EXE with Wine
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
branches: ["main"]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v4
|
|
|
|
# 步骤 1: 安装必要依赖 (Wine 和 Xvfb)
|
|
# 增加 i386 架构支持以解决某些安装程序无法运行的问题
|
|
- name: Install System Dependencies
|
|
run: |
|
|
sudo dpkg --add-architecture i386
|
|
sudo apt-get update
|
|
sudo apt-get install -y xvfb wine64 wine32 wine binutils
|
|
sudo apt-get clean # 及时清理 apt 缓存节省硬盘空间
|
|
|
|
# 步骤 2: 下载 Python Windows 安装包
|
|
- name: Download Python 3.9.9
|
|
run: |
|
|
wget https://mirrors.tuna.tsinghua.edu.cn/python/3.9.9/python-3.9.9-amd64.exe -O python-installer.exe
|
|
ls -lh python-installer.exe
|
|
|
|
# 步骤 3: 初始化 Wine 环境
|
|
- name: Setup Wine Environment
|
|
run: |
|
|
export WINEARCH=win64
|
|
export WINEPREFIX=$HOME/.wine
|
|
# 使用 xvfb-run 启动,避免 GUI 错误
|
|
xvfb-run --auto-servernum wineboot -u
|
|
sleep 5
|
|
|
|
# 步骤 4: 在 Wine 中安装 Python
|
|
- name: Install Python in Wine
|
|
run: |
|
|
# /quiet 表示静默安装,这是在 CI 环境中运行的关键
|
|
xvfb-run --auto-servernum wine python-installer.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0
|
|
sleep 15
|
|
# 安装完后立即删除安装包,释放硬盘
|
|
rm python-installer.exe
|
|
|
|
# 步骤 5: 验证并定位 Python 路径
|
|
- name: Verify Python Path
|
|
run: |
|
|
# 动态查找 python.exe 路径并存入环境变量
|
|
PYTHON_PATH=$(find $HOME/.wine/drive_c -name "python.exe" | head -n 1)
|
|
if [ -z "$PYTHON_PATH" ]; then
|
|
echo "Python installation failed!"
|
|
exit 1
|
|
fi
|
|
echo "PYTHON_EXE=$PYTHON_PATH" >> $GITHUB_ENV
|
|
echo "Found Python at: $PYTHON_PATH"
|
|
wine "$PYTHON_PATH" --version
|
|
|
|
# 步骤 6: 安装 Python 依赖
|
|
- name: Install Pip Dependencies
|
|
run: |
|
|
# 使用清华源加速并节省网络开销
|
|
wine "$PYTHON_EXE" -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple
|
|
wine "$PYTHON_EXE" -m pip install pyinstaller keyboard pywin32 -i https://pypi.tuna.tsinghua.edu.cn/simple
|
|
|
|
# 步骤 7: 执行 PyInstaller 构建
|
|
- name: Build EXE
|
|
run: |
|
|
# --clean 参数可以在构建前清理临时文件
|
|
wine "$PYTHON_EXE" -m PyInstaller --onefile --windowed --clean --name Shortcut_Sync_PotPlayer main.py
|
|
|
|
# 步骤 8: 上传 Artifact (Gitea 专用版本)
|
|
- name: Upload Artifact
|
|
uses: christopherhx/gitea-upload-artifact@v4
|
|
with:
|
|
name: Shortcut_Sync_PotPlayer
|
|
path: dist/Shortcut_Sync_PotPlayer.exe
|
|
|
|
# 步骤 9: 发布 Release (仅在推送 tag 时执行)
|
|
- name: Create Release
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
uses: https://gitea.com/actions/release-action@main
|
|
with:
|
|
files: dist/Shortcut_Sync_PotPlayer.exe
|
|
api_key: '${{ secrets.GITHUB_TOKEN }}'
|
|
name: 'Release ${{ github.ref_name }}'
|
|
draft: false
|
|
prerelease: false |