feat: 新增 Python 3.14t 自由线程镜像 (#6434)

* fix(resource): select free-threaded extension ABI

* chore(deps): require moviepilot-rust 0.2.9

* perf: add free-threaded runtime comparison

* feat: add free-threaded runtime profile

* chore(deps): require moviepilot-rust 0.3.0

* test: isolate system endpoint import graph

* fix(docker): preserve runtime profile during recovery

* feat(runtime): expose active GIL state

* feat(plugin): log GIL fallback attribution

* test: refresh runtime observability dependency baseline

* fix(plugin): validate the active uv runtime profile

* test(runtime): expand free-threaded benchmark evidence

* docs(runtime): define v3t governance gates

* test(runtime): separate rust benchmark modes

* docs: sync free-threaded architecture baseline

* perf: add PostgreSQL driver comparison

* docs(runtime): record final free-threaded evidence

* fix(runtime): converge dual-profile dependency verification

* fix(runtime): scope Python 3.14 warning filter

* fix(runtime): match actual oss2 syntax warning

* docs(runtime): refresh free-threaded benchmark evidence

* test(architecture): refresh runtime dependency baseline

* ci: skip unused Trivy Java database

* build: exclude local verification artifacts

* docs(runtime): refresh PostgreSQL driver benchmarks

* docs(runtime): record plugin restore acceptance

* docs(runtime): record amd64 candidate acceptance

* ci: pin beta image publisher action

* test(architecture): merge runtime dependency baseline

* feat(runtime): expose Python GIL status

* docs(runtime): document Python runtime status fields
This commit is contained in:
InfinityPacer
2026-08-24 17:48:14 +08:00
committed by GitHub
parent 88dce4ca8e
commit 326b5cf3ad
63 changed files with 5294 additions and 253 deletions
+45 -1
View File
@@ -315,11 +315,15 @@ def test_browser_install_is_centralized_in_startup() -> None:
browser = (ROOT / "docker" / "browser.sh").read_text(encoding="utf-8")
updater = (ROOT / "docker" / "update.sh").read_text(encoding="utf-8")
startup = entrypoint.split("# 使用env配置", 1)[1]
updater_source = 'source "${MP_CONTROL_DIR:-/usr/local/lib/moviepilot/control}/update.sh"'
assert "-m cloakbrowser install" not in entrypoint
assert browser.count("-m cloakbrowser install") == 2
assert "-m cloakbrowser install" not in updater
assert startup.index('source "${MP_CONTROL_DIR:-/usr/local/lib/moviepilot/control}/update.sh"') < startup.index(
assert startup.count(updater_source) == 1
assert startup.index(updater_source) < startup.index(
'if [ "${MOVIEPILOT_BOOTSTRAP_UPDATE_DONE:-0}" != "1" ]'
) < startup.index(
'source "${MP_CONTROL_DIR:-/usr/local/lib/moviepilot/control}/browser.sh"'
) < startup.index("resolve_browser_cache_dir") < startup.index("ensure_browser_kernel")
@@ -589,6 +593,46 @@ def test_backend_ready_timeout_accepts_leading_zero_decimal(tmp_path: Path) -> N
assert "MoviePilot Web 已可访问" in output
def test_backend_dependency_recovery_uses_runtime_profile_sync(tmp_path: Path) -> None:
"""启动自愈必须复用按当前解释器选择依赖组的同步入口。"""
venv_bin = tmp_path / "venv" / "bin"
venv_bin.mkdir(parents=True)
python_bin = venv_bin / "python3"
python_bin.write_text(
"#!/bin/bash\n[ -f \"${RECOVERY_MARKER}\" ]\n",
encoding="utf-8",
)
python_bin.chmod(0o755)
marker = tmp_path / "recovered"
output = _run_entrypoint_case(
tmp_path,
"""
INFO() { printf '[INFO] %s\\n' "$1"; }
WARN() { printf '[WARN] %s\\n' "$1"; }
configure_package_route() {
PACKAGE_LOG="test-route"
printf 'configured\\n'
}
sync_project_dependencies_for() {
printf 'sync:%s\\n' "$1"
touch "${RECOVERY_MARKER}"
}
ensure_backend_runtime_dependencies
printf 'route-ready:%s\\n' "${PACKAGE_ROUTE_READY}"
""",
env={
"VENV_PATH": str(tmp_path / "venv"),
"RECOVERY_MARKER": str(marker),
},
)
assert "configured" in output
assert "sync:/app" in output
assert "route-ready:true" in output
assert marker.exists()
def test_backend_failure_keepalive_contract_is_explicit() -> None:
"""后端异常默认保活诊断,显式关闭后才退出容器。"""
content = (ROOT / "docker" / "entrypoint.sh").read_text(encoding="utf-8")