fix(ci): install local Python release wheels

This commit is contained in:
fz
2026-08-18 18:02:02 +08:00
parent 7bb766fc82
commit 1b9f9ae256
6 changed files with 49 additions and 17 deletions
+6 -2
View File
@@ -68,9 +68,13 @@ jobs:
print(f"version={release['pep440_version'](repository_version)}")
PY
- name: Install and run the published entry path
- name: Install local release wheels and run the public entry path
env:
VERSION: ${{ steps.compatibility-version.outputs.version }}
run: |
python -m pip install --find-links dist "deepseek-harness-sdk==${{ steps.compatibility-version.outputs.version }}"
python -m pip install \
"dist/deepseek_harness_sdk-$VERSION-py3-none-any.whl" \
"dist/deepseek_harness_runtime_bin-$VERSION-py3-none-manylinux_2_28_x86_64.whl"
python scripts/smoke-python-runtime.py --scenario sdk-default
python scripts/smoke-python-runtime.py --scenario sdk-mcp