mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
Split the single ci.yml into two workflows so the PR check panel stops listing master-only obs jobs that skip (gray) and block the aggregate green-check: - ci.yml is now pull_request-only, holding only the 9 PR jobs (node-24, node-24-coverage, node-24-consumers, node-compat, python-sdk, python-runtime, windows, windows-native, all-checks-passed). It drops the workflow-level concurrency block since master carve-outs no longer apply. - ci-master.yml (new) carries the six master/dispatch jobs (wine-apt-cache, serial-linux-selfhosted, serial-macos, serial-windows, and both runner benchmarks) with the push-exempt cancel-in-progress block and suite input. It does not listen to pull_request, so its jobs never appear in PR checks. ci.yml keeps the wine apt cache seed/restore (repo-scoped by key), so moving the producer to ci-master.yml does not break the PR windows job's restore. Update ci-workflow.spec.ts to assert the two-workflow split: ci-master owns the drills/benchmarks and the push-exemption concurrency, ci.yml is PR-only without concurrency. Update the serial-reference, portable-required, failover-runbook, and pnpm-caching notes (en/zh + i18n) and .github/AGENTS.md to reflect ci-master. Verification: scripts/ci-workflow.spec.ts 12/12, both workflows YAML-parse, verify-translation-pairing consistent, verify-agent-note-format passes.