run-gates.ts 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887
  1. /**
  2. * Run local and CI quality gates with bounded in-process scheduling.
  3. *
  4. * Package scripts own public aggregate names; this runner owns their validated
  5. * dependency graphs, scheduler environment, and process diagnostics.
  6. * @see ../.agents/notes/implemented/process/2026-07-06-parallel-pre-push-gates.md
  7. */
  8. import { spawn } from 'node:child_process'
  9. import { availableParallelism } from 'node:os'
  10. import { resolve } from 'node:path'
  11. import { performance } from 'node:perf_hooks'
  12. import { COVERAGE_EXEMPT_ENV, coverageExemptHeavySuites } from './coverage-exempt.ts'
  13. /** A named aggregate exposed by the gate runner. */
  14. export type Mode =
  15. | 'ci-primary'
  16. | 'ci-linux-primary'
  17. | 'ci-static'
  18. | 'ci-lint-contracts-ready'
  19. | 'ci-coverage'
  20. | 'ci-snapshot'
  21. | 'ci-artifacts'
  22. | 'ci-consumers'
  23. | 'ci-windows-blocking'
  24. | 'ci-windows-complete'
  25. | 'ci-windows-observational'
  26. | 'node-compat'
  27. | 'check-all'
  28. | 'doc-sync'
  29. type GateResultStatus = 'passed' | 'failed' | 'skipped'
  30. type GateState = 'pending' | 'running' | GateResultStatus
  31. /** A command and its dependency metadata inside one aggregate. */
  32. export interface Gate {
  33. id: string
  34. label: string
  35. displayCommand: string
  36. command: string
  37. args: string[]
  38. needs?: string[]
  39. env?: Record<string, string | undefined>
  40. allowFailure?: boolean
  41. }
  42. /** The observed outcome of one gate process. */
  43. export interface GateResult {
  44. gate: Gate
  45. status: GateResultStatus
  46. durationMs: number
  47. output: GateOutputChunk[]
  48. exitCode: number | null
  49. signalCode: NodeJS.Signals | null
  50. error?: string
  51. }
  52. interface GateOutputChunk {
  53. stream: 'stdout' | 'stderr'
  54. text: string
  55. }
  56. interface RunningGate {
  57. gate: Gate
  58. promise: Promise<GateResult>
  59. }
  60. interface ConcurrencyDefault {
  61. workers: number
  62. source: string
  63. }
  64. type GateExecutor = (gate: Gate) => Promise<GateResult>
  65. type ResultObserver = (result: GateResult) => void
  66. const root = resolve(import.meta.dirname, '..')
  67. if (import.meta.main) {
  68. process.exitCode = await main(process.argv.slice(2))
  69. }
  70. async function main(args: string[]): Promise<number> {
  71. const mode = parseMode(args[0])
  72. const gates = gatesForMode(mode)
  73. const concurrencyDefault = defaultConcurrency(mode, gates.length)
  74. const concurrencyOverride = process.env.DSH_GATE_CONCURRENCY
  75. const maxConcurrency = concurrencyFromEnv('DSH_GATE_CONCURRENCY', concurrencyDefault.workers)
  76. const concurrencySource = concurrencyOverride === undefined || concurrencyOverride === ''
  77. ? concurrencyDefault.source
  78. : '$DSH_GATE_CONCURRENCY'
  79. const startedAt = performance.now()
  80. console.log(`run-gates: ${mode} running ${gates.length} gate(s) with ${maxConcurrency} worker(s) from ${concurrencySource}.`)
  81. const results = await runGates(gates, maxConcurrency, runGate, printResult)
  82. printSummary(results, performance.now() - startedAt)
  83. return results.some(result => result.gate.allowFailure !== true && (result.status === 'failed' || result.status === 'skipped'))
  84. ? 1
  85. : 0
  86. }
  87. function parseMode(raw: string | undefined): Mode {
  88. switch (raw) {
  89. case 'ci-primary':
  90. case 'ci-linux-primary':
  91. case 'ci-static':
  92. case 'ci-lint-contracts-ready':
  93. case 'ci-coverage':
  94. case 'ci-snapshot':
  95. case 'ci-artifacts':
  96. case 'ci-consumers':
  97. case 'ci-windows-blocking':
  98. case 'ci-windows-complete':
  99. case 'ci-windows-observational':
  100. case 'node-compat':
  101. case 'check-all':
  102. case 'doc-sync':
  103. return raw
  104. default:
  105. throw new Error(
  106. `run-gates: expected mode ci-primary | ci-linux-primary | ci-static | ci-lint-contracts-ready | ci-coverage | ci-snapshot | ci-artifacts | ci-consumers | ci-windows-blocking | ci-windows-complete | ci-windows-observational | node-compat | check-all | doc-sync, got ${JSON.stringify(raw)}.`,
  107. )
  108. }
  109. }
  110. /**
  111. * Resolve the default worker count for one aggregate.
  112. * @param selectedMode - aggregate whose resource posture applies.
  113. * @param total - number of gates in the aggregate.
  114. * @param available - host CPU availability for ordinary modes.
  115. * @returns the default worker count and its diagnostic source.
  116. */
  117. export function defaultConcurrency(
  118. selectedMode: Mode,
  119. total: number,
  120. available = availableParallelism(),
  121. ): ConcurrencyDefault {
  122. if (selectedMode === 'ci-consumers') return { workers: total, source: 'ci-consumers gate count' }
  123. // Local modes cap workers: several doc gates each build a full ts.Program,
  124. // so an uncapped default on a large host trades wall clock for memory blowups.
  125. const localCap = selectedMode === 'check-all' || selectedMode === 'doc-sync'
  126. const modeLimit = localCap ? Math.min(4, available) : available
  127. return {
  128. workers: Math.min(total, modeLimit),
  129. source: localCap
  130. ? `${available} available CPU(s), ${selectedMode} cap 4`
  131. : `${available} available CPU(s)`,
  132. }
  133. }
  134. function concurrencyFromEnv(name: string, fallback: number): number {
  135. const raw = process.env[name]
  136. if (raw === undefined || raw === '') return fallback
  137. const parsed = Number.parseInt(raw, 10)
  138. if (!Number.isSafeInteger(parsed) || parsed < 1) {
  139. throw new Error(`run-gates: ${name} must be a positive integer, got ${JSON.stringify(raw)}.`)
  140. }
  141. return parsed
  142. }
  143. function pnpmScript(id: string, script: string, options: Partial<Gate> = {}): Gate {
  144. return {
  145. id,
  146. label: options.label ?? script,
  147. displayCommand: `pnpm run ${script}`,
  148. ...pnpmInvocation(['run', script]),
  149. ...options,
  150. }
  151. }
  152. function pnpmExec(id: string, args: string[], options: Partial<Gate> = {}): Gate {
  153. return {
  154. id,
  155. label: options.label ?? `pnpm exec ${args.join(' ')}`,
  156. displayCommand: `pnpm exec ${args.join(' ')}`,
  157. ...pnpmInvocation(['exec', ...args]),
  158. ...options,
  159. }
  160. }
  161. function pnpmInvocation(args: string[]): Pick<Gate, 'command' | 'args'> {
  162. const entrypoint = process.env.npm_execpath
  163. if (entrypoint === undefined || entrypoint === '') {
  164. throw new Error('run-gates: npm_execpath is unavailable; invoke the runner through a pnpm package script.')
  165. }
  166. // Windows cannot spawn the pnpm.cmd shim directly; the JavaScript entrypoint keeps every host shell-free.
  167. return { command: process.execPath, args: [entrypoint, ...args] }
  168. }
  169. /**
  170. * Construct the complete gate list for a named aggregate.
  171. * @param selected - aggregate mode to construct.
  172. * @returns the aggregate's gate graph.
  173. */
  174. export function gatesForMode(selected: Mode): Gate[] {
  175. switch (selected) {
  176. case 'ci-primary':
  177. return ciPrimaryGates()
  178. case 'ci-linux-primary':
  179. return [...ciPrimaryGates(), webSnapshotGate(['built-package-invariants'])]
  180. case 'ci-static':
  181. return ciStaticGates({ ownsBuild: false })
  182. case 'ci-lint-contracts-ready':
  183. return [
  184. lintGate(),
  185. pnpmScript('duplication', 'duplication'),
  186. ]
  187. case 'ci-coverage':
  188. return coverageGates()
  189. case 'ci-snapshot':
  190. return [pnpmScript('build', 'build'), snapshotGate()]
  191. case 'ci-artifacts':
  192. return ciArtifactGates()
  193. case 'ci-consumers':
  194. return ciConsumerGates()
  195. case 'ci-windows-blocking':
  196. return ciWindowsBlockingGates()
  197. case 'ci-windows-complete':
  198. return ciWindowsCompleteGates()
  199. case 'ci-windows-observational':
  200. return ciWindowsObservationalGates()
  201. case 'node-compat':
  202. return nodeCompatGates()
  203. case 'check-all':
  204. return [
  205. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  206. pnpmScript('cordis-config', 'verify-cordis-config', { label: 'Cordis config' }),
  207. pnpmScript('client-domain-graph', 'verify-client-domain-graph', { label: 'client domain graph' }),
  208. pnpmScript('test', 'test'),
  209. pnpmScript('issue-management', 'test:issue-management', { label: 'Issue management policy' }),
  210. pnpmScript('duplication', 'duplication'),
  211. snapshotGate(),
  212. pnpmScript('build', 'build'),
  213. pnpmScript('build:web', 'build:web'),
  214. ...hygieneLeafGates({ artifactNeeds: ['build'] }),
  215. ...docSyncLeafGates({
  216. docTypecheckNeeds: ['build'],
  217. docTypecheckEnv: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  218. docTypecheckScript: 'doc-typecheck:contracts-ready',
  219. }),
  220. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  221. ]
  222. case 'doc-sync':
  223. return docSyncLeafGates()
  224. }
  225. }
  226. function ciSharedStaticGates(): Gate[] {
  227. return [
  228. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  229. pnpmScript('constraints', 'constraints'),
  230. pnpmScript('package-invariants', 'verify-package-invariants', { label: 'package invariants' }),
  231. pnpmScript('cordis-config', 'verify-cordis-config', { label: 'Cordis config' }),
  232. pnpmScript('issue-management', 'test:issue-management', { label: 'Issue management policy' }),
  233. ]
  234. }
  235. function ciPrimaryGates(): Gate[] {
  236. return [
  237. ...ciSharedStaticGates(),
  238. typertContractsGate(),
  239. pnpmScript('typecheck', 'typecheck:contracts-ready', { needs: ['typert-contracts'] }),
  240. lintGate({ needs: ['typert-contracts'] }),
  241. pnpmScript('duplication', 'duplication'),
  242. ...coverageGates(),
  243. ...nodeCompatSmokeGates(),
  244. snapshotGate(),
  245. ...docSyncLeafGates({
  246. docTypecheckNeeds: ['typert-contracts'],
  247. docTypecheckScript: 'doc-typecheck:contracts-ready',
  248. }),
  249. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  250. pnpmScript('knip', 'knip'),
  251. // The prepared typecheck and build both drive Client tsc, while build also
  252. // repeats the Host contract pass. Wait for all three consumers so build
  253. // neither races tsbuildinfo nor replaces declarations while they are read.
  254. pnpmScript('build', 'build', { needs: ['typecheck', 'lint', 'doc-typecheck'] }),
  255. pnpmScript('publint', 'publint', { needs: ['build'] }),
  256. pnpmScript('node-next-types', 'verify-node-next-types', {
  257. label: 'node-next types',
  258. needs: ['build'],
  259. }),
  260. builtPackageInvariantsGate(['build']),
  261. builtBinSmokeGate(),
  262. ]
  263. }
  264. function nodeCompatGates(): Gate[] {
  265. const typecheck = flagEnabled('DSH_NODE_COMPAT_SKIP_TYPECHECK')
  266. ? []
  267. : [pnpmScript('typecheck', 'typecheck')]
  268. if (runningNodeMajor() !== 22) {
  269. return [...typecheck, ...nodeCompatSmokeGates()]
  270. }
  271. return [
  272. ...typecheck,
  273. pnpmScript('build', 'build', {
  274. ...typecheck.length === 0 ? {} : { needs: ['typecheck'] },
  275. }),
  276. pnpmScript('build:web', 'build:web', {
  277. label: 'Web frontend build',
  278. needs: ['build'],
  279. }),
  280. ...nodeCompatSmokeGates({ cliSmoke: true }),
  281. ]
  282. }
  283. function nodeCompatSmokeGates(options: { cliSmoke?: boolean } = {}): Gate[] {
  284. const gates: Gate[] = [
  285. pnpmExec('source-worker-smoke', [
  286. 'vitest',
  287. 'run',
  288. 'packages/workflow/workflow-workerthread/tests/source-worker.compat.spec.ts',
  289. ], { label: 'source worker smoke' }),
  290. pnpmExec('jsonl-zstd-smoke', [
  291. 'vitest',
  292. 'run',
  293. 'packages/session/session-persistence-jsonl/tests/zstd.compat.spec.ts',
  294. ], { label: 'JSONL Zstandard smoke' }),
  295. pnpmExec('dsh-source-launch-smoke', [
  296. 'vitest',
  297. 'run',
  298. 'apps/cli/tests/source-launch.compat.spec.ts',
  299. ], { label: 'dsh source-launch smoke' }),
  300. pnpmExec('vitest-jsdom-smoke', [
  301. 'vitest',
  302. 'run',
  303. 'scripts/vitest-environment.compat.spec.ts',
  304. ], { label: 'Vitest jsdom smoke' }),
  305. ]
  306. if (options.cliSmoke) {
  307. gates.push(
  308. pnpmExec('cli-lazy-search-startup-smoke', [
  309. 'vitest',
  310. 'run',
  311. 'apps/cli/tests/lazy-search-startup.compat.spec.ts',
  312. ], {
  313. label: 'CLI lazy-search startup smoke',
  314. env: { DSH_REQUIRE_BUILT_CLI_SMOKE: '1' },
  315. needs: ['build:web'],
  316. }),
  317. )
  318. }
  319. return gates
  320. }
  321. /** Active Node major used to select version-specific compatibility checks. */
  322. function runningNodeMajor(): number {
  323. const major = Number.parseInt(process.versions.node.split('.')[0] ?? '', 10)
  324. if (!Number.isSafeInteger(major)) {
  325. throw new Error(`run-gates: cannot parse Node version ${JSON.stringify(process.versions.node)}.`)
  326. }
  327. return major
  328. }
  329. function ciStaticGates(options: { ownsBuild: boolean }): Gate[] {
  330. return [
  331. ...ciSharedStaticGates(),
  332. ...options.ownsBuild ? [pnpmScript('build', 'build')] : [],
  333. ...docSyncLeafGates({
  334. includeDocTypecheck: options.ownsBuild,
  335. ...options.ownsBuild
  336. ? {
  337. docTypecheckNeeds: ['build'],
  338. docTypecheckEnv: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  339. docTypecheckScript: 'doc-typecheck:contracts-ready',
  340. }
  341. : {},
  342. docsBuildScript: 'docs:build:mpa',
  343. }),
  344. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  345. pnpmScript('knip', 'knip'),
  346. ]
  347. }
  348. function ciArtifactGates(): Gate[] {
  349. return [
  350. pnpmScript('build', 'build'),
  351. pnpmScript('publint', 'publint', { needs: ['build'] }),
  352. pnpmScript('node-next-types', 'verify-node-next-types', {
  353. label: 'node-next types',
  354. needs: ['build'],
  355. }),
  356. builtPackageInvariantsGate(['build']),
  357. builtBinSmokeGate(),
  358. ]
  359. }
  360. function ciConsumerGates(): Gate[] {
  361. const builtTree = ['build']
  362. const validatedBuild = ['built-package-invariants']
  363. return [
  364. pnpmScript('build', 'build'),
  365. pnpmScript('node-compat', 'check:node-compat', { label: 'Node compatibility' }),
  366. pnpmScript('publint', 'publint', { needs: builtTree }),
  367. builtPackageInvariantsGate(['publint']),
  368. pnpmScript('lint-and-duplication', 'check:ci:lint:contracts-ready', {
  369. label: 'lint and duplication',
  370. needs: validatedBuild,
  371. }),
  372. snapshotGate(validatedBuild),
  373. webSnapshotGate(validatedBuild),
  374. pnpmScript('doc-typecheck', 'doc-typecheck:contracts-ready', {
  375. needs: validatedBuild,
  376. env: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  377. }),
  378. pnpmScript('node-next-types', 'verify-node-next-types', {
  379. label: 'node-next types',
  380. needs: validatedBuild,
  381. }),
  382. builtBinSmokeGate(validatedBuild),
  383. ]
  384. }
  385. function webSnapshotGate(needs: string[]): Gate {
  386. return pnpmScript('web-snapshot', 'test:web:built', {
  387. label: 'web browser snapshot',
  388. displayCommand: 'DSH_SNAPSHOT=replay pnpm run test:web:built',
  389. env: { DSH_SNAPSHOT: 'replay' },
  390. needs,
  391. })
  392. }
  393. function ciWindowsBlockingGates(): Gate[] {
  394. return [
  395. pnpmScript('windows-build', 'build', { label: 'build' }),
  396. pnpmScript('windows-site', 'docs:build', { label: 'production site' }),
  397. ]
  398. }
  399. function ciWindowsCompleteGates(): Gate[] {
  400. const observational = ciWindowsObservationalGates()
  401. // The required production site replaces the observational MPA build; both
  402. // VitePress modes write the same output directory and cannot overlap.
  403. .filter(gate => gate.id !== 'build' && gate.id !== 'docs-site-build')
  404. .map(gate => ({ ...gate, allowFailure: true }))
  405. return [
  406. pnpmScript('build', 'build'),
  407. pnpmScript('windows-site', 'docs:build', { label: 'production site' }),
  408. ...coverageGates(),
  409. ...observational,
  410. ]
  411. }
  412. function ciWindowsObservationalGates(): Gate[] {
  413. return [
  414. ...ciStaticGates({ ownsBuild: true }),
  415. // Linux owns required lint and snapshots; Windows omits those duplicates.
  416. pnpmScript('duplication', 'duplication'),
  417. pnpmScript('publint', 'publint', { needs: ['build'] }),
  418. pnpmScript('node-next-types', 'verify-node-next-types', {
  419. label: 'node-next types',
  420. needs: ['build'],
  421. }),
  422. builtPackageInvariantsGate(['build']),
  423. builtBinSmokeGate(),
  424. ]
  425. }
  426. function typertContractsGate(): Gate {
  427. return pnpmScript('typert-contracts', 'build:lib:host', { label: 'TypeRT contracts' })
  428. }
  429. function lintGate(options: { needs?: string[] } = {}): Gate {
  430. const raw = process.env.DSH_OXLINT_THREADS
  431. const script = 'lint:contracts-ready'
  432. return pnpmScript('lint', script, {
  433. ...raw === undefined || raw === ''
  434. ? {}
  435. : { displayCommand: `DSH_OXLINT_THREADS=${raw} pnpm run ${script}` },
  436. ...options.needs === undefined ? {} : { needs: options.needs },
  437. })
  438. }
  439. // The heavy suites run uninstrumented beside the thresholded gate: their
  440. // compiler- and subprocess-bound fixtures pay a multiple of their runtime
  441. // under v8 instrumentation while contributing nothing the thresholds need
  442. // (membership rules in scripts/coverage-exempt.ts).
  443. //
  444. // DSH_COVERAGE_MAX_WORKERS is the lane's worker budget, so the two parallel
  445. // gates split it instead of each claiming it whole (the failover pool's
  446. // 8 x 6-instance bound assumes one lane never exceeds its value). The exempt
  447. // gate's wall clock is dominated by its longest single file, so it takes the
  448. // small share. A budget of 1 gives each gate 1 worker; lanes that need a
  449. // strict total of one (the serial reference jobs) also set
  450. // DSH_GATE_CONCURRENCY=1, which keeps the gates from overlapping at all.
  451. function coverageWorkerArgs(): { instrumented: string[]; exempt: string[] } {
  452. const [flag] = positiveIntArg('DSH_COVERAGE_MAX_WORKERS', '--maxWorkers')
  453. if (flag === undefined) return { instrumented: [], exempt: [] }
  454. const total = Number.parseInt(flag.split('=')[1] ?? '', 10)
  455. const exempt = Math.max(1, Math.floor(total / 3))
  456. const instrumented = Math.max(1, total - exempt)
  457. return {
  458. instrumented: [`--maxWorkers=${String(instrumented)}`],
  459. exempt: [`--maxWorkers=${String(exempt)}`],
  460. }
  461. }
  462. function coverageGates(): Gate[] {
  463. const workers = coverageWorkerArgs()
  464. return [
  465. pnpmExec('coverage', [
  466. 'vitest',
  467. 'run',
  468. '--coverage',
  469. ...workers.instrumented,
  470. ], {
  471. label: 'test:coverage',
  472. env: { [COVERAGE_EXEMPT_ENV]: '1' },
  473. }),
  474. pnpmExec('coverage-exempt-heavy', [
  475. 'vitest',
  476. 'run',
  477. ...coverageExemptHeavySuites.map(suite => suite.filter),
  478. ...workers.exempt,
  479. ], {
  480. label: 'test:coverage-exempt-heavy',
  481. }),
  482. ]
  483. }
  484. // Example and package snapshots boot their bins in `lib` mode (built artifacts under plain Node,
  485. // plugins via real exports); script snapshots execute their real source entry path.
  486. // Callers wait either on `build` or on a validation gate that transitively owns that build.
  487. function snapshotGate(needs: string[] = ['build']): Gate {
  488. return pnpmScript('snapshot', 'test:snapshot', {
  489. env: { DSH_EXAMPLE_MODE: 'lib' },
  490. needs,
  491. })
  492. }
  493. function builtPackageInvariantsGate(needs?: string[]): Gate {
  494. return pnpmScript('built-package-invariants', 'verify-built-package-invariants', {
  495. label: 'built package invariants',
  496. ...needs === undefined ? {} : { needs },
  497. })
  498. }
  499. function positiveIntArg(envName: string, flag: string): string[] {
  500. const raw = process.env[envName]
  501. if (raw === undefined || raw === '') return []
  502. const parsed = Number.parseInt(raw, 10)
  503. if (!Number.isSafeInteger(parsed) || parsed < 1 || String(parsed) !== raw) {
  504. throw new Error(`run-gates: ${envName} must be a positive integer, got ${JSON.stringify(raw)}.`)
  505. }
  506. return [`${flag}=${raw}`]
  507. }
  508. function flagEnabled(envName: string): boolean {
  509. const raw = process.env[envName]
  510. if (raw === undefined || raw === '') return false
  511. if (raw !== '1') throw new Error(`run-gates: ${envName} must be 1 when set, got ${JSON.stringify(raw)}.`)
  512. return true
  513. }
  514. function hygieneLeafGates(options: { artifactNeeds?: string[] } = {}): Gate[] {
  515. const artifactOptions = options.artifactNeeds === undefined ? {} : { needs: options.artifactNeeds }
  516. return [
  517. pnpmScript('rescope-vendor', 'rescope-vendor:check', { label: 'vendor rescope' }),
  518. pnpmScript('knip', 'knip'),
  519. pnpmScript('publint', 'publint', artifactOptions),
  520. pnpmScript('constraints', 'constraints'),
  521. pnpmScript('package-invariants', 'verify-package-invariants', { label: 'package invariants' }),
  522. builtPackageInvariantsGate(options.artifactNeeds),
  523. pnpmScript('node-next-types', 'verify-node-next-types', {
  524. label: 'node-next types',
  525. ...artifactOptions,
  526. }),
  527. ]
  528. }
  529. function docSyncLeafGates(options: {
  530. includeDocTypecheck?: boolean
  531. docTypecheckNeeds?: string[]
  532. docTypecheckEnv?: Record<string, string | undefined>
  533. docTypecheckScript?: 'doc-typecheck' | 'doc-typecheck:contracts-ready'
  534. docsBuildScript?: 'docs:build' | 'docs:build:mpa'
  535. } = {}): Gate[] {
  536. const docTypecheckOptions: Partial<Gate> = {}
  537. if (options.docTypecheckNeeds !== undefined) docTypecheckOptions.needs = options.docTypecheckNeeds
  538. if (options.docTypecheckEnv !== undefined) docTypecheckOptions.env = options.docTypecheckEnv
  539. return [
  540. ...options.includeDocTypecheck === false
  541. ? []
  542. : [pnpmScript('doc-typecheck', options.docTypecheckScript ?? 'doc-typecheck', docTypecheckOptions)],
  543. pnpmScript('cordis-catalog', 'verify-cordis-catalog', { label: 'cordis catalog' }),
  544. pnpmScript('export-jsdoc', 'verify-export-jsdoc', { label: 'export jsdoc' }),
  545. pnpmScript('tool-catalog', 'verify-tool-catalog', { label: 'tool catalog' }),
  546. pnpmScript('config-catalog', 'verify-config-catalog', { label: 'config catalog' }),
  547. pnpmScript('persistence-catalog', 'verify-persistence-catalog', { label: 'persistence catalog' }),
  548. pnpmScript('doc-graphs', 'verify-doc-graphs', { label: 'doc graphs' }),
  549. pnpmScript('scoped-events', 'verify-scoped-events', { label: 'scoped events' }),
  550. pnpmScript('markdown-wrap', 'verify-md-wrap', { label: 'markdown wrap' }),
  551. pnpmScript('markdown-links', 'verify-md-links', { label: 'markdown links' }),
  552. pnpmScript('public-repository-links', 'verify-public-repository-links', { label: 'public repository links' }),
  553. pnpmScript('doc-refs', 'verify-doc-refs', { label: 'doc refs' }),
  554. pnpmScript('package-paths', 'verify-package-paths', { label: 'package paths' }),
  555. pnpmScript('config-source-ownership', 'verify-config-source-ownership', { label: 'config source ownership' }),
  556. pnpmScript('package-readme-model-experience', 'verify-package-readme-model-experience', { label: 'package README model experience' }),
  557. pnpmScript('mermaid', 'verify-mermaid'),
  558. pnpmScript('agent-note-classification', 'verify-agent-note-classification', { label: 'agent note classification' }),
  559. pnpmScript('agent-note-format', 'verify-agent-note-format', { label: 'agent note format' }),
  560. pnpmScript('archived-agent-notes', 'verify-archived-agent-notes', { label: 'archived agent notes' }),
  561. pnpmScript('type-equivalence', 'verify-type-equiv', { label: 'type equivalence' }),
  562. pnpmScript('skill-invocation-metadata', 'verify-skill-invocation-metadata', { label: 'skill invocation metadata' }),
  563. pnpmScript('translation-prompt', 'verify-translation-prompt', { label: 'translation prompt' }),
  564. pnpmScript('translation-pairing', 'verify-translation-pairing', { label: 'translation pairing' }),
  565. pnpmScript('doc-budgets', 'verify-doc-budgets', { label: 'doc budgets' }),
  566. pnpmExec('docs-site-projection', ['vitest', 'run', 'scripts/project-doc-site.spec.ts'], {
  567. label: 'documentation projection',
  568. }),
  569. // Keep the VitePress build itself in one gate because projection rewrites website/.generated.
  570. pnpmScript('docs-site-build', options.docsBuildScript ?? 'docs:build', { label: 'documentation build' }),
  571. pnpmScript('package-readme-limitations', 'verify-package-readme-limitations', { label: 'package README limitations' }),
  572. ]
  573. }
  574. function builtBinSmokeGate(needs: string[] = ['build']): Gate {
  575. return pnpmExec('built-bin-smoke', [
  576. 'vitest',
  577. 'run',
  578. '--config',
  579. 'vitest.e2e.config.ts',
  580. 'examples/headless-agent/tests/keyless-smoke.e2e.ts',
  581. 'apps/cli/tests/built-bin.e2e.ts',
  582. 'packages/examples/acp-demo/tests/built-bin.e2e.ts',
  583. 'packages/host/directory-picker-native/tests/built-worker.e2e.ts',
  584. 'packages/sdk/server/tests/built-scope-carrier.e2e.ts',
  585. 'packages/subagent/subagent-codex/tests/loader-composition.e2e.ts',
  586. 'packages/subagent/subagent-claude-code/tests/loader-composition.e2e.ts',
  587. 'packages/api/remotes/tests/built-lib.e2e.ts',
  588. // Built execution consumers: the only automated proof that package-name
  589. // imports reach their lib/ entrypoints under plain Node. The e2e lane runs
  590. // unbuilt, so these files self-skip there.
  591. 'packages/workflow/workflow-workerthread/tests/built-worker.e2e.ts',
  592. 'packages/code-runtime/code-runtime-worker/tests/built-lib.e2e.ts',
  593. 'packages/lsp/lsp-local/tests/built-lib.e2e.ts',
  594. ], {
  595. label: 'built-bin smoke',
  596. needs,
  597. env: { DSH_EXAMPLE_MODE: 'lib' },
  598. })
  599. }
  600. /**
  601. * Reject a gate list whose graph cannot be executed unambiguously.
  602. * @param gates - complete aggregate to validate.
  603. */
  604. function validateGateGraph(gates: readonly Gate[]): void {
  605. if (gates.length === 0) throw new Error('run-gates: gate graph has no gates.')
  606. const ids = new Set<string>()
  607. for (const gate of gates) {
  608. if (ids.has(gate.id)) throw new Error(`run-gates: duplicate gate id ${JSON.stringify(gate.id)}.`)
  609. ids.add(gate.id)
  610. }
  611. for (const gate of gates) {
  612. for (const dependency of gate.needs ?? []) {
  613. if (!ids.has(dependency)) {
  614. throw new Error(`run-gates: gate ${JSON.stringify(gate.id)} depends on unknown gate ${JSON.stringify(dependency)}.`)
  615. }
  616. }
  617. }
  618. const cycle = findDependencyCycle(gates)
  619. if (cycle !== undefined) throw new Error(`run-gates: dependency cycle: ${cycle.join(' -> ')}.`)
  620. }
  621. function findDependencyCycle(gates: readonly Gate[]): string[] | undefined {
  622. const byId = new Map(gates.map(gate => [gate.id, gate]))
  623. const complete = new Set<string>()
  624. const active = new Map<string, number>()
  625. const path: string[] = []
  626. const visit = (id: string): string[] | undefined => {
  627. if (complete.has(id)) return undefined
  628. const cycleStart = active.get(id)
  629. if (cycleStart !== undefined) return [...path.slice(cycleStart), id]
  630. const gate = byId.get(id)
  631. if (gate === undefined) return undefined
  632. active.set(id, path.length)
  633. path.push(id)
  634. for (const dependency of gate.needs ?? []) {
  635. const cycle = visit(dependency)
  636. if (cycle !== undefined) return cycle
  637. }
  638. path.pop()
  639. active.delete(id)
  640. complete.add(id)
  641. return undefined
  642. }
  643. for (const gate of gates) {
  644. const cycle = visit(gate.id)
  645. if (cycle !== undefined) return cycle
  646. }
  647. return undefined
  648. }
  649. /**
  650. * Validate and run one aggregate before the injected executor can start a child.
  651. * @param gates - complete aggregate to execute.
  652. * @param maxActive - maximum concurrent child count.
  653. * @param execute - child-process executor.
  654. * @param observe - result observer invoked when each gate settles.
  655. * @returns results in aggregate order.
  656. */
  657. export async function runGates(
  658. gates: Gate[],
  659. maxActive: number,
  660. execute: GateExecutor,
  661. observe: ResultObserver = () => {},
  662. ): Promise<GateResult[]> {
  663. validateGateGraph(gates)
  664. if (!Number.isSafeInteger(maxActive) || maxActive < 1) {
  665. throw new Error(`run-gates: max concurrency must be a positive integer, got ${JSON.stringify(maxActive)}.`)
  666. }
  667. const states = new Map<string, GateState>(gates.map(gate => [gate.id, 'pending']))
  668. const results = new Map<string, GateResult>()
  669. const running: RunningGate[] = []
  670. for (;;) {
  671. let madeProgress = false
  672. while (running.length < maxActive) {
  673. const ready = gates.find(gate => states.get(gate.id) === 'pending' && dependenciesPassed(gate, states))
  674. if (ready === undefined) break
  675. states.set(ready.id, 'running')
  676. running.push({ gate: ready, promise: execute(ready) })
  677. console.log(`run-gates: start ${ready.label}`)
  678. madeProgress = true
  679. }
  680. if (running.length === 0) {
  681. let pending = gates.filter(gate => states.get(gate.id) === 'pending')
  682. while (pending.length > 0) {
  683. const gate = pending.find(item => (item.needs ?? []).some((id) => {
  684. const state = states.get(id)
  685. return state === 'failed' || state === 'skipped'
  686. }))
  687. if (gate === undefined) throw new Error('run-gates: validated graph stalled without a failed dependency.')
  688. const failedDeps = (gate.needs ?? []).filter((id) => {
  689. const state = states.get(id)
  690. return state === 'failed' || state === 'skipped'
  691. })
  692. const result: GateResult = {
  693. gate,
  694. status: 'skipped',
  695. durationMs: 0,
  696. output: [],
  697. exitCode: null,
  698. signalCode: null,
  699. error: `dependency failed or skipped: ${failedDeps.join(', ')}`,
  700. }
  701. states.set(gate.id, 'skipped')
  702. results.set(gate.id, result)
  703. observe(result)
  704. pending = pending.filter(item => item !== gate)
  705. }
  706. break
  707. }
  708. if (!madeProgress) {
  709. const settled = await Promise.race(running.map(async item => ({ item, result: await item.promise })))
  710. running.splice(running.indexOf(settled.item), 1)
  711. states.set(settled.item.gate.id, settled.result.status)
  712. results.set(settled.item.gate.id, settled.result)
  713. observe(settled.result)
  714. }
  715. }
  716. return gates.map((gate) => {
  717. const result = results.get(gate.id)
  718. if (result === undefined) throw new Error(`run-gates: missing result for ${gate.id}.`)
  719. return result
  720. })
  721. }
  722. function dependenciesPassed(gate: Gate, states: Map<string, GateState>): boolean {
  723. return (gate.needs ?? []).every(id => states.get(id) === 'passed')
  724. }
  725. /**
  726. * Execute one gate through the real shell-free child-process boundary.
  727. * @param gate - command and scheduler environment to execute.
  728. * @returns the complete process outcome.
  729. */
  730. export async function runGate(gate: Gate): Promise<GateResult> {
  731. const started = performance.now()
  732. const output: GateOutputChunk[] = []
  733. let spawnError: string | undefined
  734. const outcome = await new Promise<{
  735. exitCode: number | null
  736. signalCode: NodeJS.Signals | null
  737. }>((resolveExit) => {
  738. const child = spawn(gate.command, gate.args, {
  739. cwd: root,
  740. env: { ...process.env, ...gate.env },
  741. stdio: ['pipe', 'pipe', 'pipe'],
  742. })
  743. child.stdout.setEncoding('utf8')
  744. child.stderr.setEncoding('utf8')
  745. child.stdout.on('data', (chunk: string) => {
  746. output.push({ stream: 'stdout', text: chunk })
  747. })
  748. child.stderr.on('data', (chunk: string) => {
  749. output.push({ stream: 'stderr', text: chunk })
  750. })
  751. child.on('error', (error) => {
  752. spawnError = `failed to start command: ${error.message}`
  753. resolveExit({ exitCode: null, signalCode: null })
  754. })
  755. child.on('close', (exitCode, signalCode) => {
  756. resolveExit({ exitCode, signalCode })
  757. })
  758. child.stdin.end()
  759. })
  760. const { exitCode, signalCode } = outcome
  761. const status: GateResultStatus = exitCode === 0 && signalCode === null && spawnError === undefined ? 'passed' : 'failed'
  762. const result: GateResult = {
  763. gate,
  764. status,
  765. durationMs: performance.now() - started,
  766. output,
  767. exitCode,
  768. signalCode,
  769. }
  770. if (spawnError !== undefined) result.error = spawnError
  771. return result
  772. }
  773. /**
  774. * Format every independently observed failure fact for the aggregate summary.
  775. * @param result - unsuccessful gate result.
  776. * @returns error, exit, and signal facts without allowing one to hide another.
  777. */
  778. export function formatGateResultReason(result: GateResult): string {
  779. const facts: string[] = []
  780. if (result.error !== undefined) facts.push(result.error)
  781. if (result.exitCode !== null) facts.push(`exit ${result.exitCode}`)
  782. if (result.signalCode !== null) facts.push(`signal ${result.signalCode}`)
  783. return facts.length === 0 ? 'no exit code or signal' : facts.join(', ')
  784. }
  785. function printResult(result: GateResult): void {
  786. const verbose = process.env.DSH_GATE_VERBOSE === '1'
  787. const seconds = (result.durationMs / 1000).toFixed(2)
  788. if (result.status === 'passed' && !verbose) {
  789. console.log(`run-gates: PASS ${result.gate.label} (${seconds}s)`)
  790. return
  791. }
  792. const heading = `${result.status.toUpperCase()} ${result.gate.label} (${seconds}s)`
  793. const writeHeading = result.status === 'passed' ? console.log : console.error
  794. writeHeading(`\n== ${heading} ==`)
  795. if (result.status !== 'passed') {
  796. console.error(`command: ${result.gate.displayCommand}`)
  797. console.error(`outcome: ${formatGateResultReason(result)}`)
  798. }
  799. printOutput(result.output)
  800. }
  801. function printSummary(results: GateResult[], durationMs: number): void {
  802. const passed = results.filter(result => result.status === 'passed').length
  803. const failed = results.filter(result => result.status === 'failed').length
  804. const skipped = results.filter(result => result.status === 'skipped').length
  805. const seconds = (durationMs / 1000).toFixed(2)
  806. console.log(`\nrun-gates: ${passed} passed, ${failed} failed, ${skipped} skipped in ${seconds}s.`)
  807. const unsuccessful = results.filter(result => result.status === 'failed' || result.status === 'skipped')
  808. if (unsuccessful.length === 0) return
  809. console.error('run-gates: unsuccessful gates:')
  810. for (const result of unsuccessful) {
  811. const duration = (result.durationMs / 1000).toFixed(2)
  812. const reason = formatGateResultReason(result)
  813. const disposition = result.gate.allowFailure === true ? 'NON-BLOCKING ' : ''
  814. console.error(` - ${disposition}${result.status.toUpperCase()} ${result.gate.label} (${duration}s, ${reason})`)
  815. console.error(` ${result.gate.displayCommand}`)
  816. }
  817. }
  818. function printOutput(output: GateOutputChunk[]): void {
  819. for (const chunk of output) {
  820. if (chunk.stream === 'stdout') process.stdout.write(chunk.text)
  821. else process.stderr.write(chunk.text)
  822. }
  823. }