Compare commits
46
Commits
miu-patch-1
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c7bf638f17 | ||
|
|
fc1a71dcdd | ||
|
|
61930b49d7 | ||
|
|
a4f286f55a | ||
|
|
b94754f827 | ||
|
|
e671c9402f | ||
|
|
4b4e527c3e | ||
|
|
2f79e2dda0 | ||
|
|
aa678894b0 | ||
|
|
c1cda62bb5 | ||
|
|
65e9670a78 | ||
|
|
c7918a7492 | ||
|
|
0152340b65 | ||
|
|
8a13a098da | ||
|
|
3646908a00 | ||
|
|
07c586c1d5 | ||
|
|
8022a69d61 | ||
|
|
dc264f249b | ||
|
|
cb555293e4 | ||
|
|
233ceaca2e | ||
|
|
b4dd7492c2 | ||
|
|
f915340969 | ||
|
|
9eb173bdfc | ||
|
|
d55269c1f0 | ||
|
|
8b41e59e1d | ||
|
|
4c8cfb1177 | ||
|
|
9cf6198cbf | ||
|
|
43868f576e | ||
|
|
bd59fbe7e7 | ||
|
|
e989c26715 | ||
|
|
3725893237 | ||
|
|
d9af7cadf3 | ||
|
|
d4627c8aba | ||
|
|
e59bc51fca | ||
|
|
14e49f1b19 | ||
|
|
7f7c172abb | ||
|
|
479fc155f7 | ||
|
|
4973716368 | ||
|
|
38c3bf33ab | ||
|
|
84de76c853 | ||
|
|
87f8a4cd91 | ||
|
|
cf93a1ce59 | ||
|
|
789b02ee27 | ||
|
|
18b5ba9c43 | ||
|
|
190a08805b | ||
|
|
e85e2c7aa9 |
@@ -1,38 +1,109 @@
|
||||
name: Build Windows EXE with Full Image
|
||||
on: [push]
|
||||
name: Build Windows EXE with Wine
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
branches: ["main"]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: Ubuntu_docker_act
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
# 设定全局环境变量,这些变量在所有 steps 中都生效
|
||||
env:
|
||||
WINEARCH: win64
|
||||
WINEPREFIX: /root/.wine
|
||||
WINEDEBUG: -all # 屏蔽无用的警告日志 (如 missing Gecko)
|
||||
DISPLAY: :99 # 统一使用 99 号虚拟显示器
|
||||
|
||||
- name: Install Wine
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# 步骤 1: 安装必要依赖
|
||||
- name: Install System Dependencies
|
||||
run: |
|
||||
sudo dpkg --add-architecture i386
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y wine64 wine32
|
||||
wine --version # 安装后验证
|
||||
|
||||
- name: Install Windows dependencies using Wine Python
|
||||
run: |
|
||||
# 使用 Wine 运行 Windows 版本的 Python
|
||||
wine python -m pip install --upgrade pip
|
||||
wine python -m pip install pyinstaller keyboard pywin32
|
||||
|
||||
# 环境已预装,直接验证
|
||||
- name: Verify tools
|
||||
run: |
|
||||
node --version
|
||||
wine python --version
|
||||
wine --version # 确认 wine 是否存在,full 镜像很可能包含
|
||||
|
||||
- name: Build EXE using Wine Python
|
||||
run: |
|
||||
wine python -m PyInstaller --onefile --windowed --name Shortcut_Sync_PotPlayer main.py
|
||||
sudo apt-get install -y xvfb wine64 wine32 wine binutils
|
||||
sudo apt-get clean # 及时清理 apt 缓存节省硬盘空间
|
||||
|
||||
# 步骤 2: 在后台持续运行 Xvfb
|
||||
- name: Start Xvfb
|
||||
run: |
|
||||
# 启动 X 虚拟屏幕并放到后台,供整个工作流期间的 Wine 使用
|
||||
Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
|
||||
sleep 3 # 给虚拟显示器几秒钟的启动时间
|
||||
|
||||
# 步骤 3: 下载 Python Windows 安装包
|
||||
- name: Download Python 3.9.1
|
||||
run: |
|
||||
wget https://mirrors.tuna.tsinghua.edu.cn/python/3.9.1/python-3.9.1-amd64.exe -O python-installer.exe
|
||||
ls -lh python-installer.exe
|
||||
|
||||
# 步骤 4: 初始化 Wine 环境
|
||||
- name: Setup Wine Environment
|
||||
run: |
|
||||
# 初始化 Wine,不再使用 xvfb-run
|
||||
wineboot -u
|
||||
# 重要:等待 Wine 后台配置进程完全结束
|
||||
wineserver -w
|
||||
# 将 Wine 配置为 Windows 10 (Python 3.9+ 强制要求 Win8 以上)
|
||||
winecfg -v win10
|
||||
wineserver -w
|
||||
|
||||
# 步骤 5: 在 Wine 中安装 Python
|
||||
- name: Install Python in Wine
|
||||
run: |
|
||||
# /quiet 表示静默安装,加入 /log 参数抓取日志以便排错
|
||||
wine python-installer.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0 /log python-install.log || (cat python-install.log && exit 1)
|
||||
# 重要:静默安装往往是异步的,必须等待 wineserver 彻底结束,防止 X connection 突然断开
|
||||
wineserver -w
|
||||
# 安装完后立即删除安装包,释放硬盘
|
||||
rm python-installer.exe
|
||||
|
||||
# 步骤 6: 验证并定位 Python 路径
|
||||
- name: Verify Python Path
|
||||
run: |
|
||||
# 动态查找 python.exe 路径并存入环境变量
|
||||
PYTHON_PATH=$(find $WINEPREFIX/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
|
||||
|
||||
# 步骤 7: 安装 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
|
||||
wineserver -w
|
||||
|
||||
# 步骤 8: 执行 PyInstaller 构建
|
||||
- name: Build EXE
|
||||
run: |
|
||||
# --clean 参数可以在构建前清理临时文件
|
||||
wine "$PYTHON_EXE" -m PyInstaller --onefile --windowed --clean --name Shortcut_Sync_PotPlayer main.py
|
||||
wineserver -w
|
||||
|
||||
# 步骤 9: 上传 Artifact (Gitea 专用版本)
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: christopherhx/gitea-upload-artifact@v4
|
||||
with:
|
||||
name: Shortcut_Sync_PotPlayer
|
||||
path: dist/Shortcut_Sync_PotPlayer.exe
|
||||
path: dist/Shortcut_Sync_PotPlayer.exe
|
||||
|
||||
# 步骤 10: 发布 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
|
||||
Reference in New Issue
Block a user