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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  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 Python runtime CI validation for the selected targets.
  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: ${{ github.event_name != 'push' || github.ref != 'refs/heads/master' }}
  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. with:
  148. persist-credentials: false
  149. - uses: pnpm/action-setup@v4
  150. with:
  151. dest: ${{ runner.temp }}/setup-pnpm-js-${{ github.run_id }}-${{ github.run_attempt }}-${{ github.job }}
  152. - name: Enable Windows Developer Mode (symlink support)
  153. if: runner.os == 'Windows'
  154. shell: pwsh
  155. run: >-
  156. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock"
  157. /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1"
  158. # setup-node's built-in pnpm store cache keys on platform AND arch, so
  159. # the Linux architectures sharing runner.os stay on separate caches.
  160. - uses: actions/setup-node@v6
  161. with:
  162. node-version: 24
  163. cache: pnpm
  164. - uses: actions/setup-python@v6.3.0
  165. with:
  166. python-version: '3.10'
  167. - name: Install Python build tooling
  168. run: python -m pip install uv==0.11.23
  169. # Cache pkg's target Node binary; lockfile changes roll the
  170. # exact key while the restore prefix can seed its replacement.
  171. - uses: actions/cache@v4
  172. with:
  173. path: ~/.pkg-cache
  174. key: pkg-fetch-${{ matrix.target }}-${{ hashFiles('pnpm-lock.yaml') }}
  175. restore-keys: |
  176. pkg-fetch-${{ matrix.target }}-
  177. - name: Install (immutable)
  178. # node-gyp fetches Node headers from nodejs.org during install; that
  179. # endpoint stalls intermittently (observed 10 s connect timeouts).
  180. # Bounded retries mirror the wine lane's transfer policy without a
  181. # mirror, since these installs also resolve native addons.
  182. shell: bash
  183. run: |
  184. for attempt in 1 2 3; do
  185. if pnpm install --frozen-lockfile; then exit 0; fi
  186. [ "$attempt" -lt 3 ] && sleep 10
  187. done
  188. exit 1
  189. - name: Rebuild Linux node-pty against manylinux 2.28
  190. if: runner.os == 'Linux'
  191. env:
  192. RUNNER_ARCH: ${{ runner.arch }}
  193. run: |
  194. set -euo pipefail
  195. case "$RUNNER_ARCH" in
  196. X64) image=quay.io/pypa/manylinux_2_28_x86_64 ;;
  197. ARM64) image=quay.io/pypa/manylinux_2_28_aarch64 ;;
  198. *) echo "::error::Unsupported Linux runner architecture $RUNNER_ARCH"; exit 1 ;;
  199. esac
  200. addon_dir="$(realpath packages/subprocess/subprocess-local/node_modules/node-pty)"
  201. pnpm_setup_root="$(realpath "$(dirname "$(dirname "$PNPM_HOME")")")"
  202. (cd "$addon_dir" && npm_config_build_from_source=true pnpm run install)
  203. addon="$addon_dir/build/Release/pty.node"
  204. [ -f "$addon_dir/build/Makefile" ] || {
  205. echo "::error::node-pty install did not generate $addon_dir/build/Makefile"
  206. exit 1
  207. }
  208. docker run --rm \
  209. --user "$(id -u):$(id -g)" \
  210. -v "$PWD:$PWD" \
  211. -v "$HOME/.cache/node-gyp:$HOME/.cache/node-gyp:ro" \
  212. -v "$pnpm_setup_root:$pnpm_setup_root:ro" \
  213. -w "$addon_dir" \
  214. "$image" \
  215. bash -euxo pipefail -c \
  216. 'rm -rf build/Release && make -C build -j2 BUILDTYPE=Release'
  217. [ -f "$addon" ] || { echo "::error::$addon missing after manylinux rebuild"; exit 1; }
  218. readelf --version-info "$addon" | tee node-pty-glibc-versions.txt
  219. maximum="$(sed -n 's/.*Name: GLIBC_\([0-9.]*\).*/\1/p' node-pty-glibc-versions.txt | sort -V | tail -1)"
  220. [ -n "$maximum" ] || { echo "::error::No GLIBC requirements found in $addon"; exit 1; }
  221. dpkg --compare-versions "$maximum" le 2.28 || {
  222. echo "::error::node-pty addon requires GLIBC_$maximum but wheel claims manylinux_2_28"
  223. exit 1
  224. }
  225. - name: Build single-exe
  226. env:
  227. DSH_BUILD_CLIENT_PROFILE: official
  228. run: pnpm exec tsx scripts/build-exe-for-python-sdk.ts --targets=${{ matrix.target }}
  229. - name: Resolve platform outputs (POSIX)
  230. id: runtime-posix
  231. if: runner.os != 'Windows'
  232. env:
  233. TARGET: ${{ matrix.target }}
  234. VERSION: ${{ needs.plan.outputs.version }}
  235. run: |
  236. set -euo pipefail
  237. platform="${TARGET#node24-}"
  238. exe="$PWD/dist-exe/deepseek-harness-sdk-runtime-$platform"
  239. case "$platform" in
  240. linux-x64) wheel=deepseek_harness_runtime_bin-$VERSION-py3-none-manylinux_2_28_x86_64.whl ;;
  241. linux-arm64) wheel=deepseek_harness_runtime_bin-$VERSION-py3-none-manylinux_2_28_aarch64.whl ;;
  242. macos-arm64) wheel=deepseek_harness_runtime_bin-$VERSION-py3-none-macosx_14_0_arm64.whl ;;
  243. macos-x64) wheel=deepseek_harness_runtime_bin-$VERSION-py3-none-macosx_14_0_x86_64.whl ;;
  244. *) echo "::error::Unsupported runtime platform $platform"; exit 1 ;;
  245. esac
  246. [ -x "$exe" ] || { echo "::error::$exe missing or not executable"; exit 1; }
  247. echo "platform=$platform" >> "$GITHUB_OUTPUT"
  248. echo "exe=$exe" >> "$GITHUB_OUTPUT"
  249. echo "wheel=$wheel" >> "$GITHUB_OUTPUT"
  250. - name: Resolve platform outputs (Windows)
  251. id: runtime-windows
  252. if: runner.os == 'Windows'
  253. shell: pwsh
  254. env:
  255. TARGET: ${{ matrix.target }}
  256. VERSION: ${{ needs.plan.outputs.version }}
  257. run: |
  258. if ($env:TARGET -ne 'node24-win-x64') { throw "Unsupported runtime target $env:TARGET" }
  259. $platform = 'win-x64'
  260. $exe = Join-Path $PWD 'dist-exe\deepseek-harness-sdk-runtime-win-x64.exe'
  261. $wheel = "deepseek_harness_runtime_bin-$env:VERSION-py3-none-win_amd64.whl"
  262. if (-not (Test-Path -LiteralPath $exe -PathType Leaf)) { throw "Runtime executable is missing at $exe" }
  263. "platform=$platform" >> $env:GITHUB_OUTPUT
  264. "exe=$exe" >> $env:GITHUB_OUTPUT
  265. "wheel=$wheel" >> $env:GITHUB_OUTPUT
  266. - name: Build release-shaped runtime wheel
  267. run: >-
  268. python scripts/build-python-release.py
  269. --package runtime
  270. --platform "${{ steps.runtime-posix.outputs.platform || steps.runtime-windows.outputs.platform }}"
  271. --runtime-exe "${{ steps.runtime-posix.outputs.exe || steps.runtime-windows.outputs.exe }}"
  272. --output-dir dist-python
  273. - uses: actions/download-artifact@v8
  274. with:
  275. name: deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  276. path: dist-python
  277. - name: Install local SDK and runtime wheels into a clean venv (POSIX)
  278. id: smoke-venv-posix
  279. if: runner.os != 'Windows'
  280. env:
  281. RUNTIME_WHEEL: ${{ steps.runtime-posix.outputs.wheel }}
  282. SDK_WHEEL: deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  283. run: |
  284. set -euo pipefail
  285. venv="$(python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-smoke-"))')"
  286. python -m venv "$venv"
  287. smoke_python="$venv/bin/python"
  288. "$smoke_python" -m pip install \
  289. "dist-python/$SDK_WHEEL" \
  290. "dist-python/$RUNTIME_WHEEL"
  291. echo "python=$smoke_python" >> "$GITHUB_OUTPUT"
  292. - name: Install local SDK and runtime wheels into a clean venv (Windows)
  293. id: smoke-venv-windows
  294. if: runner.os == 'Windows'
  295. shell: pwsh
  296. env:
  297. RUNTIME_WHEEL: ${{ steps.runtime-windows.outputs.wheel }}
  298. SDK_WHEEL: deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  299. run: |
  300. $venv = (& python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-smoke-"))').Trim()
  301. python -m venv $venv
  302. $smokePython = Join-Path $venv 'Scripts\python.exe'
  303. & $smokePython -m pip install "dist-python/$env:SDK_WHEEL" "dist-python/$env:RUNTIME_WHEEL"
  304. if ($LASTEXITCODE -ne 0) { throw "Wheel installation failed with exit code $LASTEXITCODE" }
  305. "python=$smokePython" >> $env:GITHUB_OUTPUT
  306. - name: Run installed-wheel keyless black-box tests (POSIX)
  307. if: runner.os != 'Windows'
  308. run: |
  309. set -euo pipefail
  310. blackbox_root="$(python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-blackbox-"))')"
  311. cd "$blackbox_root"
  312. env -u PYTHONPATH -u DSH_RUNTIME_MODE \
  313. "${{ steps.smoke-venv-posix.outputs.python }}" \
  314. "$GITHUB_WORKSPACE/scripts/smoke-python-runtime.py" \
  315. --scenario all \
  316. --installed-wheel
  317. - name: Run installed-wheel keyless black-box tests (Windows)
  318. if: runner.os == 'Windows'
  319. shell: pwsh
  320. run: |
  321. $blackboxRoot = (& python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-blackbox-"))').Trim()
  322. Remove-Item Env:PYTHONPATH -ErrorAction SilentlyContinue
  323. Remove-Item Env:DSH_RUNTIME_MODE -ErrorAction SilentlyContinue
  324. Push-Location $blackboxRoot
  325. try {
  326. & "${{ steps.smoke-venv-windows.outputs.python }}" "$env:GITHUB_WORKSPACE\scripts\smoke-python-runtime.py" --scenario all --installed-wheel
  327. if ($LASTEXITCODE -ne 0) { throw "Installed-wheel black-box failed with exit code $LASTEXITCODE" }
  328. } finally {
  329. Pop-Location
  330. }
  331. - name: Preflight installed-wheel real API test (POSIX)
  332. if: >-
  333. inputs.ci
  334. && runner.os != 'Windows'
  335. && (github.event_name != 'pull_request'
  336. || !(github.event.pull_request.head.repo.fork
  337. || github.event.pull_request.user.login == 'dependabot[bot]'))
  338. env:
  339. DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY_EXTERNAL }}
  340. run: |
  341. set -euo pipefail
  342. if [ -z "${DEEPSEEK_API_KEY:-}" ]; then
  343. echo "::error::DEEPSEEK_API_KEY_EXTERNAL is empty; the installed-wheel real API test cannot self-skip."
  344. exit 1
  345. fi
  346. - name: Preflight installed-wheel real API test (Windows)
  347. if: >-
  348. inputs.ci
  349. && runner.os == 'Windows'
  350. && (github.event_name != 'pull_request'
  351. || !(github.event.pull_request.head.repo.fork
  352. || github.event.pull_request.user.login == 'dependabot[bot]'))
  353. shell: pwsh
  354. env:
  355. DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY_EXTERNAL }}
  356. run: |
  357. if ([string]::IsNullOrWhiteSpace($env:DEEPSEEK_API_KEY)) {
  358. throw 'DEEPSEEK_API_KEY_EXTERNAL is empty; the installed-wheel real API test cannot self-skip.'
  359. }
  360. - name: Run installed-wheel real API black-box test (POSIX)
  361. if: >-
  362. inputs.ci
  363. && runner.os != 'Windows'
  364. && (github.event_name != 'pull_request'
  365. || !(github.event.pull_request.head.repo.fork
  366. || github.event.pull_request.user.login == 'dependabot[bot]'))
  367. env:
  368. DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY_EXTERNAL }}
  369. DEEPSEEK_BASE_URL: https://api.deepseek.com
  370. run: |
  371. set -euo pipefail
  372. blackbox_root="$(python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-blackbox-live-"))')"
  373. cd "$blackbox_root"
  374. env -u PYTHONPATH -u DSH_RUNTIME_MODE \
  375. "${{ steps.smoke-venv-posix.outputs.python }}" \
  376. "$GITHUB_WORKSPACE/scripts/smoke-python-runtime.py" \
  377. --scenario sdk-live \
  378. --installed-wheel
  379. - name: Run installed-wheel real API black-box test (Windows)
  380. if: >-
  381. inputs.ci
  382. && runner.os == 'Windows'
  383. && (github.event_name != 'pull_request'
  384. || !(github.event.pull_request.head.repo.fork
  385. || github.event.pull_request.user.login == 'dependabot[bot]'))
  386. shell: pwsh
  387. env:
  388. DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY_EXTERNAL }}
  389. DEEPSEEK_BASE_URL: https://api.deepseek.com
  390. run: |
  391. $blackboxRoot = (& python -c 'import tempfile; print(tempfile.mkdtemp(prefix="dsh-sdk-blackbox-live-"))').Trim()
  392. Remove-Item Env:PYTHONPATH -ErrorAction SilentlyContinue
  393. Remove-Item Env:DSH_RUNTIME_MODE -ErrorAction SilentlyContinue
  394. Push-Location $blackboxRoot
  395. try {
  396. & "${{ steps.smoke-venv-windows.outputs.python }}" "$env:GITHUB_WORKSPACE\scripts\smoke-python-runtime.py" --scenario sdk-live --installed-wheel
  397. if ($LASTEXITCODE -ne 0) { throw "Installed-wheel live API smoke failed with exit code $LASTEXITCODE" }
  398. } finally {
  399. Pop-Location
  400. }
  401. - name: Check Linux GLIBC requirements
  402. if: runner.os == 'Linux'
  403. run: |
  404. set -euo pipefail
  405. readelf --version-info "${{ steps.runtime-posix.outputs.exe }}" | tee glibc-versions.txt
  406. maximum="$(sed -n 's/.*Name: GLIBC_\([0-9.]*\).*/\1/p' glibc-versions.txt | sort -V | tail -1)"
  407. [ -n "$maximum" ] || { echo "::error::No GLIBC requirements found"; exit 1; }
  408. dpkg --compare-versions "$maximum" le 2.28 || {
  409. echo "::error::Executable requires GLIBC_$maximum but wheel claims manylinux_2_28"
  410. exit 1
  411. }
  412. - name: Check macOS payload architecture and deployment target
  413. if: runner.os == 'macOS'
  414. env:
  415. EXE: ${{ steps.runtime-posix.outputs.exe }}
  416. PLATFORM: ${{ steps.runtime-posix.outputs.platform }}
  417. run: |
  418. set -euo pipefail
  419. case "$PLATFORM" in
  420. macos-arm64) macho_arch=arm64 ;;
  421. macos-x64) macho_arch=x86_64 ;;
  422. *) echo "::error::Unsupported macOS platform $PLATFORM"; exit 1 ;;
  423. esac
  424. for payload in "$EXE" "$EXE-rg" "$EXE-spawn-helper"; do
  425. lipo "$payload" -verify_arch "$macho_arch"
  426. done
  427. python3 scripts/check-macos-deployment-target.py \
  428. --platform "$PLATFORM" "$EXE" "$EXE-rg" "$EXE-spawn-helper"
  429. - name: Run wheel in a manylinux 2.28 container
  430. if: runner.os == 'Linux'
  431. env:
  432. RUNNER_ARCH: ${{ runner.arch }}
  433. RUNTIME_WHEEL: ${{ steps.runtime-posix.outputs.wheel }}
  434. SDK_WHEEL: deepseek_harness_sdk-${{ needs.plan.outputs.version }}-py3-none-any.whl
  435. run: |
  436. set -euo pipefail
  437. case "$RUNNER_ARCH" in
  438. X64) image=quay.io/pypa/manylinux_2_28_x86_64 ;;
  439. ARM64) image=quay.io/pypa/manylinux_2_28_aarch64 ;;
  440. *) echo "::error::Unsupported Linux runner architecture $RUNNER_ARCH"; exit 1 ;;
  441. esac
  442. docker run --rm -e RUNTIME_WHEEL -e SDK_WHEEL -e DSH_TELEMETRY_DISABLED -v "$PWD:/work" -w /work "$image" bash -euxo pipefail -c '
  443. /opt/python/cp310-cp310/bin/python -m venv /tmp/dsh-sdk
  444. /tmp/dsh-sdk/bin/python -m pip install "/work/dist-python/$SDK_WHEEL" "/work/dist-python/$RUNTIME_WHEEL"
  445. mkdir -p /tmp/dsh-sdk-manylinux-smoke
  446. cd /tmp/dsh-sdk-manylinux-smoke
  447. env -u PYTHONPATH -u DSH_RUNTIME_MODE /tmp/dsh-sdk/bin/python /work/scripts/smoke-python-runtime.py --scenario sdk-default --installed-wheel
  448. env -u PYTHONPATH -u DSH_RUNTIME_MODE /tmp/dsh-sdk/bin/python /work/scripts/smoke-python-runtime.py --scenario sdk-mcp --installed-wheel
  449. '
  450. - uses: actions/upload-artifact@v7
  451. with:
  452. name: ${{ steps.runtime-posix.outputs.wheel || steps.runtime-windows.outputs.wheel }}
  453. path: dist-python/${{ steps.runtime-posix.outputs.wheel || steps.runtime-windows.outputs.wheel }}
  454. if-no-files-found: error
  455. retention-days: 7