run-gates.ts 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. /**
  2. * Run local and CI quality gates with bounded in-process scheduling.
  3. *
  4. * The gate vocabulary stays in package.json; this runner only decides which
  5. * independent commands can overlap and which commands wait for built artifacts.
  6. */
  7. import { spawn } from 'node:child_process'
  8. import { readdir, rm } from 'node:fs/promises'
  9. import { availableParallelism } from 'node:os'
  10. import { join, resolve } from 'node:path'
  11. import { performance } from 'node:perf_hooks'
  12. type Mode =
  13. | 'ci-primary'
  14. | 'ci-static'
  15. | 'ci-lint'
  16. | 'ci-coverage'
  17. | 'ci-snapshot'
  18. | 'ci-artifacts'
  19. | 'node-compat'
  20. | 'pre-push'
  21. type GateStatus = 'pending' | 'running' | 'passed' | 'failed' | 'skipped'
  22. interface Gate {
  23. id: string
  24. label: string
  25. command: string
  26. args: string[]
  27. needs?: string[]
  28. env?: Record<string, string | undefined>
  29. input?: string
  30. verify?: (result: GateResult) => Promise<void>
  31. }
  32. interface GateResult {
  33. gate: Gate
  34. status: GateStatus
  35. durationMs: number
  36. stdout: string
  37. stderr: string
  38. exitCode: number | null
  39. error?: string
  40. }
  41. interface RunningGate {
  42. gate: Gate
  43. promise: Promise<GateResult>
  44. }
  45. const root = resolve(import.meta.dirname, '..')
  46. const mode = parseMode(process.argv[2])
  47. const gates = gatesForMode(mode)
  48. const maxConcurrency = concurrencyFromEnv('DSH_GATE_CONCURRENCY', defaultConcurrency(gates.length))
  49. const startedAt = performance.now()
  50. console.log(`run-gates: ${mode} running ${gates.length} gate(s) with ${maxConcurrency} worker(s).`)
  51. const results = await runGates(gates, maxConcurrency)
  52. printSummary(results, performance.now() - startedAt)
  53. if (results.some(result => result.status === 'failed' || result.status === 'skipped')) process.exit(1)
  54. function parseMode(raw: string | undefined): Mode {
  55. switch (raw) {
  56. case 'ci-primary':
  57. case 'ci-static':
  58. case 'ci-lint':
  59. case 'ci-coverage':
  60. case 'ci-snapshot':
  61. case 'ci-artifacts':
  62. case 'node-compat':
  63. case 'pre-push':
  64. return raw
  65. default:
  66. throw new Error(
  67. `run-gates: expected mode ci-primary | ci-static | ci-lint | ci-coverage | ci-snapshot | ci-artifacts | node-compat | pre-push, got ${JSON.stringify(raw)}.`,
  68. )
  69. }
  70. }
  71. function defaultConcurrency(total: number): number {
  72. return Math.min(total, Math.max(4, availableParallelism()))
  73. }
  74. function concurrencyFromEnv(name: string, fallback: number): number {
  75. const raw = process.env[name]
  76. if (raw === undefined || raw === '') return fallback
  77. const parsed = Number.parseInt(raw, 10)
  78. if (!Number.isSafeInteger(parsed) || parsed < 1) {
  79. throw new Error(`run-gates: ${name} must be a positive integer, got ${JSON.stringify(raw)}.`)
  80. }
  81. return parsed
  82. }
  83. function pnpmScript(id: string, script: string, options: Partial<Gate> = {}): Gate {
  84. return {
  85. id,
  86. label: options.label ?? script,
  87. command: pnpmBin(),
  88. args: ['run', script],
  89. ...options,
  90. }
  91. }
  92. function pnpmExec(id: string, args: string[], options: Partial<Gate> = {}): Gate {
  93. return {
  94. id,
  95. label: options.label ?? `pnpm exec ${args.join(' ')}`,
  96. command: pnpmBin(),
  97. args: ['exec', ...args],
  98. ...options,
  99. }
  100. }
  101. function pnpmBin(): string {
  102. return process.platform === 'win32' ? 'pnpm.cmd' : 'pnpm'
  103. }
  104. function nodeOptions(...options: string[]): string {
  105. return [process.env.NODE_OPTIONS, ...options].filter(option => option !== undefined && option !== '').join(' ')
  106. }
  107. function gatesForMode(selected: Mode): Gate[] {
  108. switch (selected) {
  109. case 'ci-primary':
  110. return ciPrimaryGates()
  111. case 'ci-static':
  112. return ciStaticGates()
  113. case 'ci-lint':
  114. return [
  115. lintGate(),
  116. pnpmScript('duplication', 'duplication'),
  117. ]
  118. case 'ci-coverage':
  119. return [
  120. coverageGate(),
  121. ]
  122. case 'ci-snapshot':
  123. return [
  124. pnpmScript('snapshot', 'test:snapshot'),
  125. ]
  126. case 'ci-artifacts':
  127. return ciArtifactGates()
  128. case 'node-compat':
  129. return [
  130. pnpmScript('typecheck', 'typecheck'),
  131. pnpmExec('source-worker-smoke', [
  132. 'vitest',
  133. 'run',
  134. 'packages/workflow/workflow-workerthread/tests/source-worker.compat.spec.ts',
  135. ], { label: 'source worker smoke' }),
  136. ]
  137. case 'pre-push':
  138. return [
  139. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  140. pnpmScript('test', 'test'),
  141. pnpmScript('duplication', 'duplication'),
  142. pnpmScript('snapshot', 'test:snapshot'),
  143. pnpmScript('build', 'build'),
  144. ...hygieneLeafGates({ artifactNeeds: ['build'] }),
  145. ...docSyncLeafGates(),
  146. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  147. ]
  148. }
  149. }
  150. function ciPrimaryGates(): Gate[] {
  151. return [
  152. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  153. pnpmScript('constraints', 'constraints'),
  154. pnpmScript('typecheck', 'typecheck'),
  155. lintGate(),
  156. pnpmScript('duplication', 'duplication'),
  157. coverageGate(),
  158. pnpmScript('snapshot', 'test:snapshot'),
  159. demoSmokeGate({ needs: ['lint'] }),
  160. ...docSyncLeafGates(),
  161. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  162. pnpmScript('knip', 'knip'),
  163. pnpmScript('build', 'build', { needs: ['typecheck'] }),
  164. pnpmScript('publint', 'publint', { needs: ['build'] }),
  165. pnpmScript('node-next-types', 'verify-node-next-types', {
  166. label: 'node-next types',
  167. needs: ['build'],
  168. }),
  169. builtBinSmokeGate(),
  170. ]
  171. }
  172. function ciStaticGates(): Gate[] {
  173. return [
  174. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  175. pnpmScript('constraints', 'constraints'),
  176. demoSmokeGate(),
  177. ...docSyncLeafGates(),
  178. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  179. pnpmScript('knip', 'knip'),
  180. ]
  181. }
  182. function ciArtifactGates(): Gate[] {
  183. return [
  184. pnpmScript('build', 'build'),
  185. pnpmScript('publint', 'publint', { needs: ['build'] }),
  186. pnpmScript('node-next-types', 'verify-node-next-types', {
  187. label: 'node-next types',
  188. needs: ['build'],
  189. }),
  190. builtBinSmokeGate(),
  191. ]
  192. }
  193. function lintGate(): Gate {
  194. if (process.env.DSH_ESLINT_CACHE === '1') {
  195. return pnpmExec('lint', [
  196. 'eslint',
  197. '.',
  198. '--cache',
  199. '--cache-location',
  200. '.cache/eslint/',
  201. '--cache-strategy',
  202. 'content',
  203. ], {
  204. label: 'lint',
  205. env: { NODE_OPTIONS: nodeOptions('--max-old-space-size=8192') },
  206. })
  207. }
  208. return pnpmScript('lint', 'lint', {
  209. env: { NODE_OPTIONS: nodeOptions('--max-old-space-size=8192') },
  210. })
  211. }
  212. function coverageGate(): Gate {
  213. return pnpmExec('coverage', [
  214. 'vitest',
  215. 'run',
  216. '--coverage',
  217. ...positiveIntArg('DSH_COVERAGE_MAX_WORKERS', '--maxWorkers'),
  218. ], {
  219. label: 'test:coverage',
  220. })
  221. }
  222. function positiveIntArg(envName: string, flag: string): string[] {
  223. const raw = process.env[envName]
  224. if (raw === undefined || raw === '') return []
  225. const parsed = Number.parseInt(raw, 10)
  226. if (!Number.isSafeInteger(parsed) || parsed < 1 || String(parsed) !== raw) {
  227. throw new Error(`run-gates: ${envName} must be a positive integer, got ${JSON.stringify(raw)}.`)
  228. }
  229. return [`${flag}=${raw}`]
  230. }
  231. function hygieneLeafGates(options: { artifactNeeds?: string[] } = {}): Gate[] {
  232. const artifactOptions = options.artifactNeeds === undefined ? {} : { needs: options.artifactNeeds }
  233. return [
  234. pnpmScript('knip', 'knip'),
  235. pnpmScript('publint', 'publint', artifactOptions),
  236. pnpmScript('constraints', 'constraints'),
  237. pnpmScript('node-next-types', 'verify-node-next-types', {
  238. label: 'node-next types',
  239. ...artifactOptions,
  240. }),
  241. ]
  242. }
  243. function docSyncLeafGates(): Gate[] {
  244. return [
  245. pnpmScript('doc-typecheck', 'doc-typecheck'),
  246. pnpmScript('cordis-catalog', 'verify-cordis-catalog', { label: 'cordis catalog' }),
  247. pnpmScript('export-jsdoc', 'verify-export-jsdoc', { label: 'export jsdoc' }),
  248. pnpmScript('tool-catalog', 'verify-tool-catalog', { label: 'tool catalog' }),
  249. pnpmScript('config-catalog', 'verify-config-catalog', { label: 'config catalog' }),
  250. pnpmScript('persistence-catalog', 'verify-persistence-catalog', { label: 'persistence catalog' }),
  251. pnpmScript('doc-graphs', 'verify-doc-graphs', { label: 'doc graphs' }),
  252. pnpmScript('scoped-dispatch', 'verify-scoped-dispatch', { label: 'scoped dispatch' }),
  253. pnpmScript('markdown-wrap', 'verify-md-wrap', { label: 'markdown wrap' }),
  254. pnpmScript('markdown-links', 'verify-md-links', { label: 'markdown links' }),
  255. pnpmScript('doc-refs', 'verify-doc-refs', { label: 'doc refs' }),
  256. pnpmScript('package-paths', 'verify-package-paths', { label: 'package paths' }),
  257. pnpmScript('package-readme-model-experience', 'verify-package-readme-model-experience', { label: 'package README model experience' }),
  258. pnpmScript('mermaid', 'verify-mermaid'),
  259. pnpmScript('rfc-classification', 'verify-rfc-classification', { label: 'rfc classification' }),
  260. pnpmScript('rfc-format', 'verify-rfc-format', { label: 'rfc format' }),
  261. pnpmScript('type-equivalence', 'verify-type-equiv', { label: 'type equivalence' }),
  262. pnpmScript('translation-pairing', 'verify-translation-pairing', { label: 'translation pairing' }),
  263. pnpmScript('doc-budgets', 'verify-doc-budgets', { label: 'doc budgets' }),
  264. pnpmScript('package-readme-limitations', 'verify-package-readme-limitations', { label: 'package README limitations' }),
  265. ]
  266. }
  267. function demoSmokeGate(options: { needs?: string[] } = {}): Gate {
  268. const dependencyOptions = options.needs === undefined ? {} : { needs: options.needs }
  269. return {
  270. id: 'demo-smoke',
  271. label: 'demo smoke',
  272. command: pnpmBin(),
  273. args: ['run', 'demo:echo'],
  274. input: 'echo ci smoke\n',
  275. ...dependencyOptions,
  276. verify: async (result) => {
  277. const output = result.stdout + result.stderr
  278. const sessionsRoot = join(root, '.sessions')
  279. try {
  280. if (!output.includes('[tool call] echo({"text":"ci smoke"})')) {
  281. throw new Error('demo smoke did not show the echo tool call.')
  282. }
  283. if (!output.includes('[tool result] ECHO: CI SMOKE')) {
  284. throw new Error('demo smoke did not show the echo tool result.')
  285. }
  286. const buckets = await readdir(sessionsRoot, { withFileTypes: true })
  287. let found = false
  288. for (const bucket of buckets) {
  289. if (!bucket.isDirectory() || !bucket.name.startsWith('cwd-')) continue
  290. const entries = await readdir(join(sessionsRoot, bucket.name))
  291. if (entries.some(entry => /^main-session-.+\.jsonl$/.test(entry))) {
  292. found = true
  293. break
  294. }
  295. }
  296. if (!found) throw new Error('demo smoke did not create a main-session JSONL log in a cwd bucket.')
  297. } finally {
  298. await rm(sessionsRoot, { recursive: true, force: true })
  299. }
  300. },
  301. }
  302. }
  303. function builtBinSmokeGate(): Gate {
  304. return pnpmExec('built-bin-smoke', [
  305. 'vitest',
  306. 'run',
  307. '--config',
  308. 'vitest.e2e.config.ts',
  309. 'packages/ui/stdio-agent/tests/built-bin.e2e.ts',
  310. 'packages/ui/acp-agent/tests/built-bin.e2e.ts',
  311. // The worker-entry packages' built bundles: the only automated proof
  312. // that lib/index.js resolves its sibling lib/worker.cjs under plain node
  313. // (the e2e lane runs unbuilt, so these files self-skip there).
  314. 'packages/workflow/workflow-workerthread/tests/built-worker.e2e.ts',
  315. 'packages/code-runtime/code-runtime-worker/tests/built-lib.e2e.ts',
  316. ], {
  317. label: 'built-bin smoke',
  318. needs: ['build'],
  319. })
  320. }
  321. async function runGates(allGates: Gate[], maxActive: number): Promise<GateResult[]> {
  322. const states = new Map<string, GateStatus>(allGates.map(gate => [gate.id, 'pending']))
  323. const results = new Map<string, GateResult>()
  324. const running: RunningGate[] = []
  325. for (;;) {
  326. let madeProgress = false
  327. while (running.length < maxActive) {
  328. const ready = allGates.find(gate => states.get(gate.id) === 'pending' && dependenciesPassed(gate, states))
  329. if (ready === undefined) break
  330. states.set(ready.id, 'running')
  331. running.push({ gate: ready, promise: runGate(ready) })
  332. console.log(`run-gates: start ${ready.label}`)
  333. madeProgress = true
  334. }
  335. if (running.length === 0) {
  336. const pending = allGates.filter(gate => states.get(gate.id) === 'pending')
  337. for (const gate of pending) {
  338. const failedDeps = (gate.needs ?? []).filter(id => states.get(id) !== 'passed')
  339. const result: GateResult = {
  340. gate,
  341. status: 'skipped',
  342. durationMs: 0,
  343. stdout: '',
  344. stderr: '',
  345. exitCode: null,
  346. error: `dependency failed or skipped: ${failedDeps.join(', ')}`,
  347. }
  348. states.set(gate.id, 'skipped')
  349. results.set(gate.id, result)
  350. printResult(result)
  351. }
  352. break
  353. }
  354. if (!madeProgress) {
  355. const settled = await Promise.race(running.map(async item => ({ item, result: await item.promise })))
  356. running.splice(running.indexOf(settled.item), 1)
  357. states.set(settled.item.gate.id, settled.result.status)
  358. results.set(settled.item.gate.id, settled.result)
  359. printResult(settled.result)
  360. }
  361. }
  362. return allGates.map((gate) => {
  363. const result = results.get(gate.id)
  364. if (result === undefined) throw new Error(`run-gates: missing result for ${gate.id}.`)
  365. return result
  366. })
  367. }
  368. function dependenciesPassed(gate: Gate, states: Map<string, GateStatus>): boolean {
  369. return (gate.needs ?? []).every(id => states.get(id) === 'passed')
  370. }
  371. async function runGate(gate: Gate): Promise<GateResult> {
  372. const started = performance.now()
  373. let stdout = ''
  374. let stderr = ''
  375. const exitCode = await new Promise<number | null>((resolveExit, reject) => {
  376. const child = spawn(gate.command, gate.args, {
  377. cwd: root,
  378. env: { ...process.env, ...gate.env },
  379. stdio: ['pipe', 'pipe', 'pipe'],
  380. })
  381. child.stdout.setEncoding('utf8')
  382. child.stderr.setEncoding('utf8')
  383. child.stdout.on('data', (chunk: string) => { stdout += chunk })
  384. child.stderr.on('data', (chunk: string) => { stderr += chunk })
  385. child.on('error', reject)
  386. child.on('close', resolveExit)
  387. if (gate.input !== undefined) child.stdin.end(gate.input)
  388. else child.stdin.end()
  389. })
  390. let status: GateStatus = exitCode === 0 ? 'passed' : 'failed'
  391. let error: string | undefined
  392. if (status === 'passed' && gate.verify !== undefined) {
  393. try {
  394. await gate.verify({ gate, status, durationMs: performance.now() - started, stdout, stderr, exitCode })
  395. } catch (verifyError: unknown) {
  396. status = 'failed'
  397. error = verifyError instanceof Error ? verifyError.message : String(verifyError)
  398. }
  399. }
  400. const result: GateResult = {
  401. gate,
  402. status,
  403. durationMs: performance.now() - started,
  404. stdout,
  405. stderr,
  406. exitCode,
  407. }
  408. if (error !== undefined) result.error = error
  409. return result
  410. }
  411. function printResult(result: GateResult): void {
  412. const seconds = (result.durationMs / 1000).toFixed(2)
  413. console.log(`\n== ${result.status.toUpperCase()} ${result.gate.label} (${seconds}s) ==`)
  414. process.stdout.write(result.stdout)
  415. process.stderr.write(result.stderr)
  416. if (result.error !== undefined) console.error(result.error)
  417. }
  418. function printSummary(results: GateResult[], durationMs: number): void {
  419. const passed = results.filter(result => result.status === 'passed').length
  420. const failed = results.filter(result => result.status === 'failed').length
  421. const skipped = results.filter(result => result.status === 'skipped').length
  422. const seconds = (durationMs / 1000).toFixed(2)
  423. console.log(`\nrun-gates: ${passed} passed, ${failed} failed, ${skipped} skipped in ${seconds}s.`)
  424. }