build-exe-for-python-sdk.yml 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. name: Build single-exe
  2. # Native builds for the release targets; see
  3. # .agents/notes/implemented/architecture/2026-07-10-single-file-executable-sdk-runtime-distribution.md.
  4. # A full target run retains one SDK wheel and five runtime wheels; subset
  5. # dispatch retains the SDK wheel and selected runtime wheels. Bare executables
  6. # and source closures are test inputs. Run manually or call it from the Python
  7. # release workflow. There is no `pull_request` trigger: a label trigger would
  8. # list gray skipped checks on every unrelated PR label event. Checkout uses the
  9. # triggering ref, so dispatch needs no separate ref input.
  10. on:
  11. workflow_call:
  12. inputs:
  13. targets:
  14. description: Comma-separated pkg targets to build; empty builds all five.
  15. type: string
  16. required: false
  17. default: ''
  18. release:
  19. description: Run as the native builder for the Python release workflow.
  20. type: boolean
  21. required: false
  22. default: false
  23. ci:
  24. description: Run as the required all-target Python runtime pull-request check.
  25. type: boolean
  26. required: false
  27. default: false
  28. secrets:
  29. DEEPSEEK_API_KEY_EXTERNAL:
  30. description: Real DeepSeek API key for trusted installed-wheel pull-request tests.
  31. required: false
  32. workflow_dispatch:
  33. inputs:
  34. targets:
  35. description: >-
  36. Comma-separated pkg targets to build. Any subset of:
  37. node24-linux-x64, node24-linux-arm64, node24-macos-arm64,
  38. node24-macos-x64, node24-win-x64. Empty builds all five.
  39. type: string
  40. required: false
  41. default: ''
  42. concurrency:
  43. # Keep the called workflow distinct from its caller's concurrency group;
  44. # github.workflow identifies the caller inside a reusable workflow and keeps
  45. # an ordinary CI run from cancelling a full release validation on the same ref.
  46. group: build-single-exe-${{ github.workflow }}-${{ github.ref }}
  47. cancel-in-progress: true
  48. permissions:
  49. contents: read
  50. env:
  51. # CI runs must never report to the production telemetry endpoint baked
  52. # into apps/cli/cordis.yml (AppCLIEntry disables the row when set).
  53. DSH_TELEMETRY_DISABLED: '1'
  54. jobs:
  55. # Job-level conditions cannot inspect `matrix`, so validate target names and
  56. # construct the matrix before the dependent jobs.
  57. plan:
  58. name: plan targets
  59. if: inputs.ci || inputs.release || github.event_name == 'workflow_dispatch'
  60. runs-on: ubuntu-latest
  61. timeout-minutes: 5
  62. outputs:
  63. matrix: ${{ steps.plan.outputs.matrix }}
  64. version: ${{ steps.version.outputs.version }}
  65. repository-version: ${{ steps.version.outputs.repository-version }}
  66. steps:
  67. - uses: actions/checkout@v6
  68. - name: Resolve repository version
  69. id: version
  70. run: |
  71. set -euo pipefail
  72. python3 - <<'PY' >> "$GITHUB_OUTPUT"
  73. import runpy
  74. release = runpy.run_path("scripts/build-python-release.py")
  75. repository_version = release["repository_version"]()
  76. wheel_version = release["pep440_version"](repository_version)
  77. print(f"repository-version={repository_version}")
  78. print(f"version={wheel_version}")
  79. PY
  80. - name: Compute matrix from targets input
  81. id: plan
  82. env:
  83. # Blank dispatch inputs build all targets.
  84. TARGETS: ${{ inputs.targets || 'node24-linux-x64,node24-linux-arm64,node24-macos-arm64,node24-macos-x64,node24-win-x64' }}
  85. run: |
  86. set -euo pipefail
  87. matrix='[]'
  88. IFS=',' read -r -a targets <<< "$TARGETS"
  89. for raw in "${targets[@]}"; do
  90. t="$(echo "$raw" | xargs)" # trim surrounding whitespace
  91. [ -z "$t" ] && continue
  92. # Native-only: hosted arm64 Linux uses ubuntu-24.04-arm, while
  93. # macos-latest is Apple Silicon; macos-15-intel is native x64.
  94. case "$t" in
  95. node24-linux-x64) runner=ubuntu-latest ;;
  96. node24-linux-arm64) runner=ubuntu-24.04-arm ;;
  97. node24-macos-arm64) runner=macos-latest ;;
  98. node24-macos-x64) runner=macos-15-intel ;;
  99. node24-win-x64) runner=windows-2025 ;;
  100. *)
  101. echo "::error::Unknown target '$t'. Supported: node24-linux-x64, node24-linux-arm64, node24-macos-arm64, node24-macos-x64, node24-win-x64."
  102. exit 1
  103. ;;
  104. esac
  105. matrix="$(jq -c --arg target "$t" --arg runner "$runner" '. + [{target: $target, runner: $runner}]' <<< "$matrix")"
  106. done
  107. if [ "$matrix" = '[]' ]; then
  108. echo "::error::The targets input selected nothing to build."
  109. exit 1
  110. fi
  111. echo "Matrix: $matrix"
  112. echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
  113. sdk-wheel:
  114. needs: plan
  115. name: deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  116. runs-on: ubuntu-latest
  117. timeout-minutes: 5
  118. steps:
  119. - uses: actions/checkout@v6
  120. - uses: actions/setup-python@v6.3.0
  121. with:
  122. python-version: '3.10'
  123. - name: Install Python build tooling
  124. run: python -m pip install uv==0.11.23
  125. - name: Build release-shaped SDK wheel
  126. run: >-
  127. python scripts/build-python-release.py
  128. --package sdk
  129. --output-dir dist-python
  130. - uses: actions/upload-artifact@v7
  131. with:
  132. name: deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  133. path: dist-python/deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  134. if-no-files-found: error
  135. retention-days: 7
  136. build:
  137. needs: [plan, sdk-wheel]
  138. name: ${{ matrix.target }}
  139. runs-on: ${{ matrix.runner }}
  140. timeout-minutes: 45
  141. strategy:
  142. fail-fast: false
  143. matrix:
  144. include: ${{ fromJSON(needs.plan.outputs.matrix) }}
  145. steps:
  146. - uses: actions/checkout@v6
  147. - uses: pnpm/action-setup@v4
  148. with:
  149. dest: ${{ runner.temp }}/setup-pnpm-js-${{ github.run_id }}-${{ github.run_attempt }}-${{ github.job }}
  150. - name: Enable Windows Developer Mode (symlink support)
  151. if: runner.os == 'Windows'
  152. shell: pwsh
  153. run: >-
  154. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock"
  155. /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1"
  156. # setup-node's built-in pnpm store cache keys on platform AND arch, so
  157. # the Linux architectures sharing runner.os stay on separate caches.
  158. - uses: actions/setup-node@v6
  159. with:
  160. node-version: 24
  161. cache: pnpm
  162. - uses: actions/setup-python@v6.3.0
  163. with:
  164. python-version: '3.10'
  165. - name: Install Python build tooling
  166. run: python -m pip install uv==0.11.23
  167. # Cache pkg's target Node binary; lockfile changes roll the
  168. # exact key while the restore prefix can seed its replacement.
  169. - uses: actions/cache@v4
  170. with:
  171. path: ~/.pkg-cache
  172. key: pkg-fetch-${{ matrix.target }}-${{ hashFiles('pnpm-lock.yaml') }}
  173. restore-keys: |
  174. pkg-fetch-${{ matrix.target }}-
  175. - name: Install (immutable)
  176. run: pnpm install --frozen-lockfile
  177. - name: Rebuild Linux node-pty against manylinux 2.28
  178. if: runner.os == 'Linux'
  179. env:
  180. RUNNER_ARCH: ${{ runner.arch }}
  181. run: |
  182. set -euo pipefail
  183. case "$RUNNER_ARCH" in
  184. X64) image=quay.io/pypa/manylinux_2_28_x86_64 ;;
  185. ARM64) image=quay.io/pypa/manylinux_2_28_aarch64 ;;
  186. *) echo "::error::Unsupported Linux runner architecture $RUNNER_ARCH"; exit 1 ;;
  187. esac
  188. addon_dir="$(realpath packages/subprocess/subprocess-local/node_modules/node-pty)"
  189. pnpm_setup_root="$(realpath "$(dirname "$(dirname "$PNPM_HOME")")")"
  190. (cd "$addon_dir" && npm_config_build_from_source=true pnpm run install)
  191. addon="$addon_dir/build/Release/pty.node"
  192. [ -f "$addon_dir/build/Makefile" ] || {
  193. echo "::error::node-pty install did not generate $addon_dir/build/Makefile"
  194. exit 1
  195. }
  196. docker run --rm \
  197. --user "$(id -u):$(id -g)" \
  198. -v "$PWD:$PWD" \
  199. -v "$HOME/.cache/node-gyp:$HOME/.cache/node-gyp:ro" \
  200. -v "$pnpm_setup_root:$pnpm_setup_root:ro" \
  201. -w "$addon_dir" \
  202. "$image" \
  203. bash -euxo pipefail -c \
  204. 'rm -rf build/Release && make -C build -j2 BUILDTYPE=Release'
  205. [ -f "$addon" ] || { echo "::error::$addon missing after manylinux rebuild"; exit 1; }
  206. readelf --version-info "$addon" | tee node-pty-glibc-versions.txt
  207. maximum="$(sed -n 's/.*Name: GLIBC_\([0-9.]*\).*/\1/p' node-pty-glibc-versions.txt | sort -V | tail -1)"
  208. [ -n "$maximum" ] || { echo "::error::No GLIBC requirements found in $addon"; exit 1; }
  209. dpkg --compare-versions "$maximum" le 2.28 || {
  210. echo "::error::node-pty addon requires GLIBC_$maximum but wheel claims manylinux_2_28"
  211. exit 1
  212. }
  213. - name: Build single-exe
  214. env:
  215. DSH_BUILD_CLIENT_PROFILE: official
  216. run: pnpm exec tsx scripts/build-exe-for-python-sdk.ts --targets=${{ matrix.target }}
  217. - name: Resolve platform outputs (POSIX)
  218. id: runtime-posix
  219. if: runner.os != 'Windows'
  220. env:
  221. TARGET: ${{ matrix.target }}
  222. VERSION: ${{ needs.plan.outputs.version }}
  223. run: |
  224. set -euo pipefail
  225. platform="${TARGET#node24-}"
  226. exe="$PWD/dist-exe/deepseek-harness-sdk-runtime-$platform"
  227. case "$platform" in
  228. linux-x64) wheel=deepseek_harness_runtime_bin-$VERSION-py3-none-manylinux_2_28_x86_64.whl ;;
  229. linux-arm64) wheel=deepseek_harness_runtime_bin-$VERSION-py3-none-manylinux_2_28_aarch64.whl ;;
  230. macos-arm64) wheel=deepseek_harness_runtime_bin-$VERSION-py3-none-macosx_14_0_arm64.whl ;;
  231. macos-x64) wheel=deepseek_harness_runtime_bin-$VERSION-py3-none-macosx_14_0_x86_64.whl ;;
  232. *) echo "::error::Unsupported runtime platform $platform"; exit 1 ;;
  233. esac
  234. [ -x "$exe" ] || { echo "::error::$exe missing or not executable"; exit 1; }
  235. echo "platform=$platform" >> "$GITHUB_OUTPUT"
  236. echo "exe=$exe" >> "$GITHUB_OUTPUT"
  237. echo "wheel=$wheel" >> "$GITHUB_OUTPUT"
  238. - name: Resolve platform outputs (Windows)
  239. id: runtime-windows
  240. if: runner.os == 'Windows'
  241. shell: pwsh
  242. env:
  243. TARGET: ${{ matrix.target }}
  244. VERSION: ${{ needs.plan.outputs.version }}
  245. run: |
  246. if ($env:TARGET -ne 'node24-win-x64') { throw "Unsupported runtime target $env:TARGET" }
  247. $platform = 'win-x64'
  248. $exe = Join-Path $PWD 'dist-exe\deepseek-harness-sdk-runtime-win-x64.exe'
  249. $wheel = "deepseek_harness_runtime_bin-$env:VERSION-py3-none-win_amd64.whl"
  250. if (-not (Test-Path -LiteralPath $exe -PathType Leaf)) { throw "Runtime executable is missing at $exe" }
  251. "platform=$platform" >> $env:GITHUB_OUTPUT
  252. "exe=$exe" >> $env:GITHUB_OUTPUT
  253. "wheel=$wheel" >> $env:GITHUB_OUTPUT
  254. - name: Build release-shaped runtime wheel
  255. run: >-
  256. python scripts/build-python-release.py
  257. --package runtime
  258. --platform "${{ steps.runtime-posix.outputs.platform || steps.runtime-windows.outputs.platform }}"
  259. --runtime-exe "${{ steps.runtime-posix.outputs.exe || steps.runtime-windows.outputs.exe }}"
  260. --output-dir dist-python
  261. - uses: actions/download-artifact@v8
  262. with:
  263. name: deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  264. path: dist-python
  265. - name: Install local SDK and runtime wheels into a clean venv (POSIX)
  266. id: smoke-venv-posix
  267. if: runner.os != 'Windows'
  268. env:
  269. RUNTIME_WHEEL: ${{ steps.runtime-posix.outputs.wheel }}
  270. SDK_WHEEL: deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  271. run: |
  272. set -euo pipefail
  273. venv="$(python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-smoke-"))')"
  274. python -m venv "$venv"
  275. smoke_python="$venv/bin/python"
  276. "$smoke_python" -m pip install \
  277. "dist-python/$SDK_WHEEL" \
  278. "dist-python/$RUNTIME_WHEEL"
  279. echo "python=$smoke_python" >> "$GITHUB_OUTPUT"
  280. - name: Install local SDK and runtime wheels into a clean venv (Windows)
  281. id: smoke-venv-windows
  282. if: runner.os == 'Windows'
  283. shell: pwsh
  284. env:
  285. RUNTIME_WHEEL: ${{ steps.runtime-windows.outputs.wheel }}
  286. SDK_WHEEL: deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  287. run: |
  288. $venv = (& python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-smoke-"))').Trim()
  289. python -m venv $venv
  290. $smokePython = Join-Path $venv 'Scripts\python.exe'
  291. & $smokePython -m pip install "dist-python/$env:SDK_WHEEL" "dist-python/$env:RUNTIME_WHEEL"
  292. if ($LASTEXITCODE -ne 0) { throw "Wheel installation failed with exit code $LASTEXITCODE" }
  293. "python=$smokePython" >> $env:GITHUB_OUTPUT
  294. - name: Run installed-wheel keyless black-box tests (POSIX)
  295. if: runner.os != 'Windows'
  296. run: |
  297. set -euo pipefail
  298. blackbox_root="$(python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-blackbox-"))')"
  299. cd "$blackbox_root"
  300. env -u PYTHONPATH -u DSH_RUNTIME_MODE \
  301. "${{ steps.smoke-venv-posix.outputs.python }}" \
  302. "$GITHUB_WORKSPACE/scripts/smoke-python-runtime.py" \
  303. --scenario all \
  304. --installed-wheel
  305. - name: Run installed-wheel keyless black-box tests (Windows)
  306. if: runner.os == 'Windows'
  307. shell: pwsh
  308. run: |
  309. $blackboxRoot = (& python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-blackbox-"))').Trim()
  310. Remove-Item Env:PYTHONPATH -ErrorAction SilentlyContinue
  311. Remove-Item Env:DSH_RUNTIME_MODE -ErrorAction SilentlyContinue
  312. Push-Location $blackboxRoot
  313. try {
  314. & "${{ steps.smoke-venv-windows.outputs.python }}" "$env:GITHUB_WORKSPACE\scripts\smoke-python-runtime.py" --scenario all --installed-wheel
  315. if ($LASTEXITCODE -ne 0) { throw "Installed-wheel black-box failed with exit code $LASTEXITCODE" }
  316. } finally {
  317. Pop-Location
  318. }
  319. - name: Preflight installed-wheel real API test (POSIX)
  320. if: >-
  321. inputs.ci
  322. && runner.os != 'Windows'
  323. && (github.event_name != 'pull_request'
  324. || !(github.event.pull_request.head.repo.fork
  325. || github.event.pull_request.user.login == 'dependabot[bot]'))
  326. env:
  327. DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY_EXTERNAL }}
  328. run: |
  329. set -euo pipefail
  330. if [ -z "${DEEPSEEK_API_KEY:-}" ]; then
  331. echo "::error::DEEPSEEK_API_KEY_EXTERNAL is empty; the installed-wheel real API test cannot self-skip."
  332. exit 1
  333. fi
  334. - name: Preflight installed-wheel real API test (Windows)
  335. if: >-
  336. inputs.ci
  337. && runner.os == 'Windows'
  338. && (github.event_name != 'pull_request'
  339. || !(github.event.pull_request.head.repo.fork
  340. || github.event.pull_request.user.login == 'dependabot[bot]'))
  341. shell: pwsh
  342. env:
  343. DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY_EXTERNAL }}
  344. run: |
  345. if ([string]::IsNullOrWhiteSpace($env:DEEPSEEK_API_KEY)) {
  346. throw 'DEEPSEEK_API_KEY_EXTERNAL is empty; the installed-wheel real API test cannot self-skip.'
  347. }
  348. - name: Run installed-wheel real API black-box test (POSIX)
  349. if: >-
  350. inputs.ci
  351. && runner.os != 'Windows'
  352. && (github.event_name != 'pull_request'
  353. || !(github.event.pull_request.head.repo.fork
  354. || github.event.pull_request.user.login == 'dependabot[bot]'))
  355. env:
  356. DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY_EXTERNAL }}
  357. DEEPSEEK_BASE_URL: https://api.deepseek.com
  358. run: |
  359. set -euo pipefail
  360. blackbox_root="$(python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-blackbox-live-"))')"
  361. cd "$blackbox_root"
  362. env -u PYTHONPATH -u DSH_RUNTIME_MODE \
  363. "${{ steps.smoke-venv-posix.outputs.python }}" \
  364. "$GITHUB_WORKSPACE/scripts/smoke-python-runtime.py" \
  365. --scenario sdk-live \
  366. --installed-wheel
  367. - name: Run installed-wheel real API black-box test (Windows)
  368. if: >-
  369. inputs.ci
  370. && runner.os == 'Windows'
  371. && (github.event_name != 'pull_request'
  372. || !(github.event.pull_request.head.repo.fork
  373. || github.event.pull_request.user.login == 'dependabot[bot]'))
  374. shell: pwsh
  375. env:
  376. DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY_EXTERNAL }}
  377. DEEPSEEK_BASE_URL: https://api.deepseek.com
  378. run: |
  379. $blackboxRoot = (& python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-blackbox-live-"))').Trim()
  380. Remove-Item Env:PYTHONPATH -ErrorAction SilentlyContinue
  381. Remove-Item Env:DSH_RUNTIME_MODE -ErrorAction SilentlyContinue
  382. Push-Location $blackboxRoot
  383. try {
  384. & "${{ steps.smoke-venv-windows.outputs.python }}" "$env:GITHUB_WORKSPACE\scripts\smoke-python-runtime.py" --scenario sdk-live --installed-wheel
  385. if ($LASTEXITCODE -ne 0) { throw "Installed-wheel live API smoke failed with exit code $LASTEXITCODE" }
  386. } finally {
  387. Pop-Location
  388. }
  389. - name: Check Linux GLIBC requirements
  390. if: runner.os == 'Linux'
  391. run: |
  392. set -euo pipefail
  393. readelf --version-info "${{ steps.runtime-posix.outputs.exe }}" | tee glibc-versions.txt
  394. maximum="$(sed -n 's/.*Name: GLIBC_\([0-9.]*\).*/\1/p' glibc-versions.txt | sort -V | tail -1)"
  395. [ -n "$maximum" ] || { echo "::error::No GLIBC requirements found"; exit 1; }
  396. dpkg --compare-versions "$maximum" le 2.28 || {
  397. echo "::error::Executable requires GLIBC_$maximum but wheel claims manylinux_2_28"
  398. exit 1
  399. }
  400. - name: Check macOS payload architecture and deployment target
  401. if: runner.os == 'macOS'
  402. env:
  403. EXE: ${{ steps.runtime-posix.outputs.exe }}
  404. PLATFORM: ${{ steps.runtime-posix.outputs.platform }}
  405. run: |
  406. set -euo pipefail
  407. case "$PLATFORM" in
  408. macos-arm64) macho_arch=arm64 ;;
  409. macos-x64) macho_arch=x86_64 ;;
  410. *) echo "::error::Unsupported macOS platform $PLATFORM"; exit 1 ;;
  411. esac
  412. for payload in "$EXE" "$EXE-rg" "$EXE-spawn-helper"; do
  413. lipo "$payload" -verify_arch "$macho_arch"
  414. done
  415. python3 scripts/check-macos-deployment-target.py \
  416. --platform "$PLATFORM" "$EXE" "$EXE-rg" "$EXE-spawn-helper"
  417. - name: Run wheel in a manylinux 2.28 container
  418. if: runner.os == 'Linux'
  419. env:
  420. RUNNER_ARCH: ${{ runner.arch }}
  421. RUNTIME_WHEEL: ${{ steps.runtime-posix.outputs.wheel }}
  422. SDK_WHEEL: deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  423. run: |
  424. set -euo pipefail
  425. case "$RUNNER_ARCH" in
  426. X64) image=quay.io/pypa/manylinux_2_28_x86_64 ;;
  427. ARM64) image=quay.io/pypa/manylinux_2_28_aarch64 ;;
  428. *) echo "::error::Unsupported Linux runner architecture $RUNNER_ARCH"; exit 1 ;;
  429. esac
  430. docker run --rm -e RUNTIME_WHEEL -e SDK_WHEEL -e DSH_TELEMETRY_DISABLED -v "$PWD:/work" -w /work "$image" bash -euxo pipefail -c '
  431. /opt/python/cp310-cp310/bin/python -m venv /tmp/dsh-sdk
  432. /tmp/dsh-sdk/bin/python -m pip install "/work/dist-python/$SDK_WHEEL" "/work/dist-python/$RUNTIME_WHEEL"
  433. mkdir -p /tmp/dsh-sdk-manylinux-smoke
  434. cd /tmp/dsh-sdk-manylinux-smoke
  435. env -u PYTHONPATH -u DSH_RUNTIME_MODE /tmp/dsh-sdk/bin/python /work/scripts/smoke-python-runtime.py --scenario sdk-default --installed-wheel
  436. env -u PYTHONPATH -u DSH_RUNTIME_MODE /tmp/dsh-sdk/bin/python /work/scripts/smoke-python-runtime.py --scenario sdk-mcp --installed-wheel
  437. '
  438. - uses: actions/upload-artifact@v7
  439. with:
  440. name: ${{ steps.runtime-posix.outputs.wheel || steps.runtime-windows.outputs.wheel }}
  441. path: dist-python/${{ steps.runtime-posix.outputs.wheel || steps.runtime-windows.outputs.wheel }}
  442. if-no-files-found: error
  443. retention-days: 7