emrg: build-release 八次修复 — Windows 软链改复制(rant #13) - #376
Merged
Conversation
argszero
commented
Aug 4, 2026
argszero
left a comment
Owner
Author
There was a problem hiding this comment.
✅ LGTM — cycle 20260805-0049
审查内容:build-runtime.sh Windows 平台用 cp 复制替代 ln -s 软链(Git Bash 软链需管理员权限)。
验证:bash -n OK;GUI 22 pass / 0 fail / 8 skip 全绿;pytest 464 passed;3/4 平台已实跑成功。
argszero
commented
Aug 4, 2026
argszero
left a comment
Owner
Author
There was a problem hiding this comment.
✅ LGTM — cycle 20260805-0056
复核确认:diff 与上轮一致(build-runtime.sh Windows 软链改复制)。bash -n OK;GUI 22 pass / 0 fail / 8 skip 全绿。无新增问题。
argszero
commented
Aug 4, 2026
argszero
left a comment
Owner
Author
There was a problem hiding this comment.
✅ LGTM — cycle 20260805-0058
第三次复核:diff 稳定(build-runtime.sh Windows 软链改复制 + .exe 跨版本路径兜底)。bash -n OK;GUI 22 pass / 0 fail / 8 skip;pytest 464 passed。3 个不同 cycle(0049/0056/0058)连续 LGTM,满足合并条件。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
改动内容
build-release CI 第八次实跑(run 30931101895)——GUI unit tests 全绿(22 pass / 0 fail / 8 skip),前 7 次修复全部生效!Windows 剩 Build runtime 失败:
根因:Windows Git Bash 软链失败
build-runtime.sh 用
ln -sfn python-dist/bin/python3.13 python创建软链——Git Bash 的 ln -s 在 Windows 需管理员权限(ln: failed to create symbolic link 'python': No such file or directory)。修复
Windows 平台用 cp 复制替代软链(python.exe + python3.exe),POSIX 保持软链。
验证