run-gates.ts 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896
  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('dsh-package-licenses', 'verify-dsh-package-licenses', { label: 'DSH package licenses' }),
  231. pnpmScript('package-invariants', 'verify-package-invariants', { label: 'package invariants' }),
  232. pnpmScript('cordis-config', 'verify-cordis-config', { label: 'Cordis config' }),
  233. pnpmScript('optional-dependency-imports', 'verify-optional-dependency-imports', {
  234. label: 'optional dependency imports',
  235. }),
  236. pnpmScript('issue-management', 'test:issue-management', { label: 'Issue management policy' }),
  237. ]
  238. }
  239. function ciPrimaryGates(): Gate[] {
  240. return [
  241. ...ciSharedStaticGates(),
  242. typertContractsGate(),
  243. pnpmScript('typecheck', 'typecheck:contracts-ready', { needs: ['typert-contracts'] }),
  244. lintGate({ needs: ['typert-contracts'] }),
  245. pnpmScript('duplication', 'duplication'),
  246. ...coverageGates(),
  247. ...nodeCompatSmokeGates(),
  248. snapshotGate(),
  249. ...docSyncLeafGates({
  250. docTypecheckNeeds: ['typert-contracts'],
  251. docTypecheckScript: 'doc-typecheck:contracts-ready',
  252. }),
  253. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  254. pnpmScript('knip', 'knip'),
  255. // The prepared typecheck and build both drive Client tsc, while build also
  256. // repeats the Host contract pass. Wait for all three consumers so build
  257. // neither races tsbuildinfo nor replaces declarations while they are read.
  258. pnpmScript('build', 'build', { needs: ['typecheck', 'lint', 'doc-typecheck'] }),
  259. pnpmScript('publint', 'publint', { needs: ['build'] }),
  260. pnpmScript('node-next-types', 'verify-node-next-types', {
  261. label: 'node-next types',
  262. needs: ['build'],
  263. }),
  264. builtPackageInvariantsGate(['build']),
  265. builtBinSmokeGate(),
  266. ]
  267. }
  268. function nodeCompatGates(): Gate[] {
  269. const typecheck = flagEnabled('DSH_NODE_COMPAT_SKIP_TYPECHECK')
  270. ? []
  271. : [pnpmScript('typecheck', 'typecheck')]
  272. if (runningNodeMajor() !== 22) {
  273. return [...typecheck, ...nodeCompatSmokeGates()]
  274. }
  275. return [
  276. ...typecheck,
  277. pnpmScript('build', 'build', {
  278. ...typecheck.length === 0 ? {} : { needs: ['typecheck'] },
  279. }),
  280. pnpmScript('build:web', 'build:web', {
  281. label: 'Web frontend build',
  282. needs: ['build'],
  283. }),
  284. ...nodeCompatSmokeGates({ cliSmoke: true }),
  285. ]
  286. }
  287. function nodeCompatSmokeGates(options: { cliSmoke?: boolean } = {}): Gate[] {
  288. const gates: Gate[] = [
  289. pnpmExec('source-worker-smoke', [
  290. 'vitest',
  291. 'run',
  292. 'packages/workflow/workflow-worker-thread/tests/source-worker.compat.spec.ts',
  293. ], { label: 'source worker smoke' }),
  294. pnpmExec('jsonl-zstd-smoke', [
  295. 'vitest',
  296. 'run',
  297. 'packages/session/session-persistence-jsonl/tests/zstd.compat.spec.ts',
  298. ], { label: 'JSONL Zstandard smoke' }),
  299. pnpmExec('dsh-source-launch-smoke', [
  300. 'vitest',
  301. 'run',
  302. 'apps/cli/tests/source-launch.compat.spec.ts',
  303. ], { label: 'dsh source-launch smoke' }),
  304. pnpmExec('vitest-jsdom-smoke', [
  305. 'vitest',
  306. 'run',
  307. 'scripts/vitest-environment.compat.spec.ts',
  308. ], { label: 'Vitest jsdom smoke' }),
  309. ]
  310. if (options.cliSmoke) {
  311. gates.push(
  312. pnpmExec('cli-lazy-search-startup-smoke', [
  313. 'vitest',
  314. 'run',
  315. 'apps/cli/tests/lazy-search-startup.compat.spec.ts',
  316. ], {
  317. label: 'CLI lazy-search startup smoke',
  318. env: { DSH_REQUIRE_BUILT_CLI_SMOKE: '1' },
  319. needs: ['build:web'],
  320. }),
  321. )
  322. }
  323. return gates
  324. }
  325. /** Active Node major used to select version-specific compatibility checks. */
  326. function runningNodeMajor(): number {
  327. const major = Number.parseInt(process.versions.node.split('.')[0] ?? '', 10)
  328. if (!Number.isSafeInteger(major)) {
  329. throw new Error(`run-gates: cannot parse Node version ${JSON.stringify(process.versions.node)}.`)
  330. }
  331. return major
  332. }
  333. function ciStaticGates(options: { ownsBuild: boolean }): Gate[] {
  334. return [
  335. ...ciSharedStaticGates(),
  336. ...options.ownsBuild ? [pnpmScript('build', 'build')] : [],
  337. ...docSyncLeafGates({
  338. includeDocTypecheck: options.ownsBuild,
  339. ...options.ownsBuild
  340. ? {
  341. docTypecheckNeeds: ['build'],
  342. docTypecheckEnv: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  343. docTypecheckScript: 'doc-typecheck:contracts-ready',
  344. }
  345. : {},
  346. docsBuildScript: 'docs:build:mpa',
  347. }),
  348. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  349. pnpmScript('knip', 'knip'),
  350. ]
  351. }
  352. function ciArtifactGates(): Gate[] {
  353. return [
  354. pnpmScript('build', 'build'),
  355. pnpmScript('publint', 'publint', { needs: ['build'] }),
  356. pnpmScript('node-next-types', 'verify-node-next-types', {
  357. label: 'node-next types',
  358. needs: ['build'],
  359. }),
  360. builtPackageInvariantsGate(['build']),
  361. builtBinSmokeGate(),
  362. ]
  363. }
  364. function ciConsumerGates(): Gate[] {
  365. const builtTree = ['build']
  366. const validatedBuild = ['built-package-invariants']
  367. return [
  368. pnpmScript('build', 'build'),
  369. pnpmScript('node-compat', 'check:node-compat', { label: 'Node compatibility' }),
  370. pnpmScript('publint', 'publint', { needs: builtTree }),
  371. builtPackageInvariantsGate(['publint']),
  372. pnpmScript('lint-and-duplication', 'check:ci:lint:contracts-ready', {
  373. label: 'lint and duplication',
  374. needs: validatedBuild,
  375. }),
  376. snapshotGate(validatedBuild),
  377. webSnapshotGate(validatedBuild),
  378. pnpmScript('doc-typecheck', 'doc-typecheck:contracts-ready', {
  379. needs: validatedBuild,
  380. env: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  381. }),
  382. pnpmScript('node-next-types', 'verify-node-next-types', {
  383. label: 'node-next types',
  384. needs: validatedBuild,
  385. }),
  386. builtBinSmokeGate(validatedBuild),
  387. ]
  388. }
  389. function webSnapshotGate(needs: string[]): Gate {
  390. return pnpmScript('web-snapshot', 'test:web:built', {
  391. label: 'web browser snapshot',
  392. displayCommand: 'DSH_SNAPSHOT=replay pnpm run test:web:built',
  393. env: { DSH_SNAPSHOT: 'replay' },
  394. needs,
  395. })
  396. }
  397. function ciWindowsBlockingGates(): Gate[] {
  398. return [
  399. pnpmScript('windows-build', 'build', { label: 'build' }),
  400. pnpmScript('windows-site', 'docs:build', { label: 'production site' }),
  401. ]
  402. }
  403. function ciWindowsCompleteGates(): Gate[] {
  404. const observational = ciWindowsObservationalGates()
  405. // The required production site replaces the observational MPA build; both
  406. // VitePress modes write the same output directory and cannot overlap.
  407. .filter(gate => gate.id !== 'build' && gate.id !== 'docs-site-build')
  408. .map(gate => ({ ...gate, allowFailure: true }))
  409. return [
  410. pnpmScript('build', 'build'),
  411. pnpmScript('windows-site', 'docs:build', { label: 'production site' }),
  412. ...coverageGates(),
  413. ...observational,
  414. ]
  415. }
  416. function ciWindowsObservationalGates(): Gate[] {
  417. return [
  418. ...ciStaticGates({ ownsBuild: true }),
  419. // Linux owns required lint and snapshots; Windows omits those duplicates.
  420. pnpmScript('duplication', 'duplication'),
  421. pnpmScript('publint', 'publint', { needs: ['build'] }),
  422. pnpmScript('node-next-types', 'verify-node-next-types', {
  423. label: 'node-next types',
  424. needs: ['build'],
  425. }),
  426. builtPackageInvariantsGate(['build']),
  427. builtBinSmokeGate(),
  428. ]
  429. }
  430. function typertContractsGate(): Gate {
  431. return pnpmScript('typert-contracts', 'build:lib:host', { label: 'Typert contracts' })
  432. }
  433. function lintGate(options: { needs?: string[] } = {}): Gate {
  434. const raw = process.env.DSH_OXLINT_THREADS
  435. const script = 'lint:contracts-ready'
  436. return pnpmScript('lint', script, {
  437. ...raw === undefined || raw === ''
  438. ? {}
  439. : { displayCommand: `DSH_OXLINT_THREADS=${raw} pnpm run ${script}` },
  440. ...options.needs === undefined ? {} : { needs: options.needs },
  441. })
  442. }
  443. // The heavy suites run uninstrumented beside the thresholded gate: their
  444. // compiler- and subprocess-bound fixtures pay a multiple of their runtime
  445. // under v8 instrumentation while contributing nothing the thresholds need
  446. // (membership rules in scripts/coverage-exempt.ts).
  447. //
  448. // DSH_COVERAGE_MAX_WORKERS is the lane's worker budget, so the two parallel
  449. // gates split it instead of each claiming it whole (the failover pool's
  450. // 8 x 6-instance bound assumes one lane never exceeds its value). The exempt
  451. // gate's wall clock is dominated by its longest single file, so it takes the
  452. // small share. A budget of 1 gives each gate 1 worker; lanes that need a
  453. // strict total of one (the serial reference jobs) also set
  454. // DSH_GATE_CONCURRENCY=1, which keeps the gates from overlapping at all.
  455. function coverageWorkerArgs(): { instrumented: string[]; exempt: string[] } {
  456. const [flag] = positiveIntArg('DSH_COVERAGE_MAX_WORKERS', '--maxWorkers')
  457. if (flag === undefined) return { instrumented: [], exempt: [] }
  458. const total = Number.parseInt(flag.split('=')[1] ?? '', 10)
  459. const exempt = Math.max(1, Math.floor(total / 3))
  460. const instrumented = Math.max(1, total - exempt)
  461. return {
  462. instrumented: [`--maxWorkers=${String(instrumented)}`],
  463. exempt: [`--maxWorkers=${String(exempt)}`],
  464. }
  465. }
  466. function coverageGates(): Gate[] {
  467. const workers = coverageWorkerArgs()
  468. return [
  469. pnpmExec('coverage', [
  470. 'vitest',
  471. 'run',
  472. '--coverage',
  473. ...workers.instrumented,
  474. ], {
  475. label: 'test:coverage',
  476. env: { [COVERAGE_EXEMPT_ENV]: '1' },
  477. }),
  478. pnpmExec('coverage-exempt-heavy', [
  479. 'vitest',
  480. 'run',
  481. ...coverageExemptHeavySuites.map(suite => suite.filter),
  482. ...workers.exempt,
  483. ], {
  484. label: 'test:coverage-exempt-heavy',
  485. }),
  486. ]
  487. }
  488. // Example and package snapshots boot their bins in `lib` mode (built artifacts under plain Node,
  489. // plugins via real exports); script snapshots execute their real source entry path.
  490. // Callers wait either on `build` or on a validation gate that transitively owns that build.
  491. function snapshotGate(needs: string[] = ['build']): Gate {
  492. return pnpmScript('snapshot', 'test:snapshot', {
  493. env: { DSH_EXAMPLE_MODE: 'lib' },
  494. needs,
  495. })
  496. }
  497. function builtPackageInvariantsGate(needs?: string[]): Gate {
  498. return pnpmScript('built-package-invariants', 'verify-built-package-invariants', {
  499. label: 'built package invariants',
  500. ...needs === undefined ? {} : { needs },
  501. })
  502. }
  503. function positiveIntArg(envName: string, flag: string): string[] {
  504. const raw = process.env[envName]
  505. if (raw === undefined || raw === '') return []
  506. const parsed = Number.parseInt(raw, 10)
  507. if (!Number.isSafeInteger(parsed) || parsed < 1 || String(parsed) !== raw) {
  508. throw new Error(`run-gates: ${envName} must be a positive integer, got ${JSON.stringify(raw)}.`)
  509. }
  510. return [`${flag}=${raw}`]
  511. }
  512. function flagEnabled(envName: string): boolean {
  513. const raw = process.env[envName]
  514. if (raw === undefined || raw === '') return false
  515. if (raw !== '1') throw new Error(`run-gates: ${envName} must be 1 when set, got ${JSON.stringify(raw)}.`)
  516. return true
  517. }
  518. function hygieneLeafGates(options: { artifactNeeds?: string[] } = {}): Gate[] {
  519. const artifactOptions = options.artifactNeeds === undefined ? {} : { needs: options.artifactNeeds }
  520. return [
  521. pnpmScript('rescope-vendor', 'rescope-vendor:check', { label: 'vendor rescope' }),
  522. pnpmScript('knip', 'knip'),
  523. pnpmScript('publint', 'publint', artifactOptions),
  524. pnpmScript('constraints', 'constraints'),
  525. pnpmScript('dsh-package-licenses', 'verify-dsh-package-licenses', { label: 'DSH package licenses' }),
  526. pnpmScript('package-invariants', 'verify-package-invariants', { label: 'package invariants' }),
  527. builtPackageInvariantsGate(options.artifactNeeds),
  528. pnpmScript('node-next-types', 'verify-node-next-types', {
  529. label: 'node-next types',
  530. ...artifactOptions,
  531. }),
  532. pnpmScript('optional-dependency-imports', 'verify-optional-dependency-imports', {
  533. label: 'optional dependency imports',
  534. }),
  535. ]
  536. }
  537. function docSyncLeafGates(options: {
  538. includeDocTypecheck?: boolean
  539. docTypecheckNeeds?: string[]
  540. docTypecheckEnv?: Record<string, string | undefined>
  541. docTypecheckScript?: 'doc-typecheck' | 'doc-typecheck:contracts-ready'
  542. docsBuildScript?: 'docs:build' | 'docs:build:mpa'
  543. } = {}): Gate[] {
  544. const docTypecheckOptions: Partial<Gate> = {}
  545. if (options.docTypecheckNeeds !== undefined) docTypecheckOptions.needs = options.docTypecheckNeeds
  546. if (options.docTypecheckEnv !== undefined) docTypecheckOptions.env = options.docTypecheckEnv
  547. return [
  548. ...options.includeDocTypecheck === false
  549. ? []
  550. : [pnpmScript('doc-typecheck', options.docTypecheckScript ?? 'doc-typecheck', docTypecheckOptions)],
  551. pnpmScript('cordis-catalog', 'verify-cordis-catalog', { label: 'cordis catalog' }),
  552. pnpmScript('client-catalog', 'verify-client-catalog', { label: 'client catalog' }),
  553. pnpmScript('export-jsdoc', 'verify-export-jsdoc', { label: 'export jsdoc' }),
  554. pnpmScript('tool-catalog', 'verify-tool-catalog', { label: 'tool catalog' }),
  555. pnpmScript('config-catalog', 'verify-config-catalog', { label: 'config catalog' }),
  556. pnpmScript('persistence-catalog', 'verify-persistence-catalog', { label: 'persistence catalog' }),
  557. pnpmScript('doc-graphs', 'verify-doc-graphs', { label: 'doc graphs' }),
  558. pnpmScript('scoped-events', 'verify-scoped-events', { label: 'scoped events' }),
  559. pnpmScript('markdown-wrap', 'verify-md-wrap', { label: 'markdown wrap' }),
  560. pnpmScript('markdown-links', 'verify-md-links', { label: 'markdown links' }),
  561. pnpmScript('public-repository-links', 'verify-public-repository-links', { label: 'public repository links' }),
  562. pnpmScript('doc-refs', 'verify-doc-refs', { label: 'doc refs' }),
  563. pnpmScript('package-paths', 'verify-package-paths', { label: 'package paths' }),
  564. pnpmScript('config-source-ownership', 'verify-config-source-ownership', { label: 'config source ownership' }),
  565. pnpmScript('package-readme-model-experience', 'verify-package-readme-model-experience', { label: 'package README model experience' }),
  566. pnpmScript('mermaid', 'verify-mermaid'),
  567. pnpmScript('agent-note-classification', 'verify-agent-note-classification', { label: 'agent note classification' }),
  568. pnpmScript('agent-note-format', 'verify-agent-note-format', { label: 'agent note format' }),
  569. pnpmScript('archived-agent-notes', 'verify-archived-agent-notes', { label: 'archived agent notes' }),
  570. pnpmScript('type-equivalence', 'verify-type-equiv', { label: 'type equivalence' }),
  571. pnpmScript('skill-invocation-metadata', 'verify-skill-invocation-metadata', { label: 'skill invocation metadata' }),
  572. pnpmScript('translation-prompt', 'verify-translation-prompt', { label: 'translation prompt' }),
  573. pnpmScript('translation-pairing', 'verify-translation-pairing', { label: 'translation pairing' }),
  574. pnpmScript('doc-budgets', 'verify-doc-budgets', { label: 'doc budgets' }),
  575. pnpmExec('docs-site-projection', ['vitest', 'run', 'scripts/project-doc-site.spec.ts', 'scripts/verify-doc-site-fragments.spec.ts'], {
  576. label: 'documentation site checks',
  577. }),
  578. // Keep the VitePress build itself in one gate because projection rewrites website/.generated.
  579. pnpmScript('docs-site-build', options.docsBuildScript ?? 'docs:build', { label: 'documentation build' }),
  580. pnpmScript('package-readme-limitations', 'verify-package-readme-limitations', { label: 'package README limitations' }),
  581. ]
  582. }
  583. function builtBinSmokeGate(needs: string[] = ['build']): Gate {
  584. return pnpmExec('built-bin-smoke', [
  585. 'vitest',
  586. 'run',
  587. '--config',
  588. 'vitest.e2e.config.ts',
  589. 'examples/headless-agent/tests/keyless-smoke.e2e.ts',
  590. 'apps/cli/tests/built-bin.e2e.ts',
  591. 'packages/examples/acp-demo/tests/built-bin.e2e.ts',
  592. 'packages/host/directory-picker-native/tests/built-worker.e2e.ts',
  593. 'packages/sdk/server/tests/built-scope-carrier.e2e.ts',
  594. 'packages/subagent/subagent-codex/tests/loader-composition.e2e.ts',
  595. 'packages/subagent/subagent-claude-code/tests/loader-composition.e2e.ts',
  596. 'packages/api/remotes/tests/built-lib.e2e.ts',
  597. // Built execution consumers: the only automated proof that package-name
  598. // imports reach their lib/ entrypoints under plain Node. The e2e lane runs
  599. // unbuilt, so these files self-skip there.
  600. 'packages/workflow/workflow-worker-thread/tests/built-worker.e2e.ts',
  601. 'packages/code-runtime/code-runtime-worker-thread/tests/built-lib.e2e.ts',
  602. 'packages/lsp/lsp-stdio/tests/built-lib.e2e.ts',
  603. ], {
  604. label: 'built-bin smoke',
  605. needs,
  606. env: { DSH_EXAMPLE_MODE: 'lib' },
  607. })
  608. }
  609. /**
  610. * Reject a gate list whose graph cannot be executed unambiguously.
  611. * @param gates - complete aggregate to validate.
  612. */
  613. function validateGateGraph(gates: readonly Gate[]): void {
  614. if (gates.length === 0) throw new Error('run-gates: gate graph has no gates.')
  615. const ids = new Set<string>()
  616. for (const gate of gates) {
  617. if (ids.has(gate.id)) throw new Error(`run-gates: duplicate gate id ${JSON.stringify(gate.id)}.`)
  618. ids.add(gate.id)
  619. }
  620. for (const gate of gates) {
  621. for (const dependency of gate.needs ?? []) {
  622. if (!ids.has(dependency)) {
  623. throw new Error(`run-gates: gate ${JSON.stringify(gate.id)} depends on unknown gate ${JSON.stringify(dependency)}.`)
  624. }
  625. }
  626. }
  627. const cycle = findDependencyCycle(gates)
  628. if (cycle !== undefined) throw new Error(`run-gates: dependency cycle: ${cycle.join(' -> ')}.`)
  629. }
  630. function findDependencyCycle(gates: readonly Gate[]): string[] | undefined {
  631. const byId = new Map(gates.map(gate => [gate.id, gate]))
  632. const complete = new Set<string>()
  633. const active = new Map<string, number>()
  634. const path: string[] = []
  635. const visit = (id: string): string[] | undefined => {
  636. if (complete.has(id)) return undefined
  637. const cycleStart = active.get(id)
  638. if (cycleStart !== undefined) return [...path.slice(cycleStart), id]
  639. const gate = byId.get(id)
  640. if (gate === undefined) return undefined
  641. active.set(id, path.length)
  642. path.push(id)
  643. for (const dependency of gate.needs ?? []) {
  644. const cycle = visit(dependency)
  645. if (cycle !== undefined) return cycle
  646. }
  647. path.pop()
  648. active.delete(id)
  649. complete.add(id)
  650. return undefined
  651. }
  652. for (const gate of gates) {
  653. const cycle = visit(gate.id)
  654. if (cycle !== undefined) return cycle
  655. }
  656. return undefined
  657. }
  658. /**
  659. * Validate and run one aggregate before the injected executor can start a child.
  660. * @param gates - complete aggregate to execute.
  661. * @param maxActive - maximum concurrent child count.
  662. * @param execute - child-process executor.
  663. * @param observe - result observer invoked when each gate settles.
  664. * @returns results in aggregate order.
  665. */
  666. export async function runGates(
  667. gates: Gate[],
  668. maxActive: number,
  669. execute: GateExecutor,
  670. observe: ResultObserver = () => {},
  671. ): Promise<GateResult[]> {
  672. validateGateGraph(gates)
  673. if (!Number.isSafeInteger(maxActive) || maxActive < 1) {
  674. throw new Error(`run-gates: max concurrency must be a positive integer, got ${JSON.stringify(maxActive)}.`)
  675. }
  676. const states = new Map<string, GateState>(gates.map(gate => [gate.id, 'pending']))
  677. const results = new Map<string, GateResult>()
  678. const running: RunningGate[] = []
  679. for (;;) {
  680. let madeProgress = false
  681. while (running.length < maxActive) {
  682. const ready = gates.find(gate => states.get(gate.id) === 'pending' && dependenciesPassed(gate, states))
  683. if (ready === undefined) break
  684. states.set(ready.id, 'running')
  685. running.push({ gate: ready, promise: execute(ready) })
  686. console.log(`run-gates: start ${ready.label}`)
  687. madeProgress = true
  688. }
  689. if (running.length === 0) {
  690. let pending = gates.filter(gate => states.get(gate.id) === 'pending')
  691. while (pending.length > 0) {
  692. const gate = pending.find(item => (item.needs ?? []).some((id) => {
  693. const state = states.get(id)
  694. return state === 'failed' || state === 'skipped'
  695. }))
  696. if (gate === undefined) throw new Error('run-gates: validated graph stalled without a failed dependency.')
  697. const failedDeps = (gate.needs ?? []).filter((id) => {
  698. const state = states.get(id)
  699. return state === 'failed' || state === 'skipped'
  700. })
  701. const result: GateResult = {
  702. gate,
  703. status: 'skipped',
  704. durationMs: 0,
  705. output: [],
  706. exitCode: null,
  707. signalCode: null,
  708. error: `dependency failed or skipped: ${failedDeps.join(', ')}`,
  709. }
  710. states.set(gate.id, 'skipped')
  711. results.set(gate.id, result)
  712. observe(result)
  713. pending = pending.filter(item => item !== gate)
  714. }
  715. break
  716. }
  717. if (!madeProgress) {
  718. const settled = await Promise.race(running.map(async item => ({ item, result: await item.promise })))
  719. running.splice(running.indexOf(settled.item), 1)
  720. states.set(settled.item.gate.id, settled.result.status)
  721. results.set(settled.item.gate.id, settled.result)
  722. observe(settled.result)
  723. }
  724. }
  725. return gates.map((gate) => {
  726. const result = results.get(gate.id)
  727. if (result === undefined) throw new Error(`run-gates: missing result for ${gate.id}.`)
  728. return result
  729. })
  730. }
  731. function dependenciesPassed(gate: Gate, states: Map<string, GateState>): boolean {
  732. return (gate.needs ?? []).every(id => states.get(id) === 'passed')
  733. }
  734. /**
  735. * Execute one gate through the real shell-free child-process boundary.
  736. * @param gate - command and scheduler environment to execute.
  737. * @returns the complete process outcome.
  738. */
  739. export async function runGate(gate: Gate): Promise<GateResult> {
  740. const started = performance.now()
  741. const output: GateOutputChunk[] = []
  742. let spawnError: string | undefined
  743. const outcome = await new Promise<{
  744. exitCode: number | null
  745. signalCode: NodeJS.Signals | null
  746. }>((resolveExit) => {
  747. const child = spawn(gate.command, gate.args, {
  748. cwd: root,
  749. env: { ...process.env, ...gate.env },
  750. stdio: ['pipe', 'pipe', 'pipe'],
  751. })
  752. child.stdout.setEncoding('utf8')
  753. child.stderr.setEncoding('utf8')
  754. child.stdout.on('data', (chunk: string) => {
  755. output.push({ stream: 'stdout', text: chunk })
  756. })
  757. child.stderr.on('data', (chunk: string) => {
  758. output.push({ stream: 'stderr', text: chunk })
  759. })
  760. child.on('error', (error) => {
  761. spawnError = `failed to start command: ${error.message}`
  762. resolveExit({ exitCode: null, signalCode: null })
  763. })
  764. child.on('close', (exitCode, signalCode) => {
  765. resolveExit({ exitCode, signalCode })
  766. })
  767. child.stdin.end()
  768. })
  769. const { exitCode, signalCode } = outcome
  770. const status: GateResultStatus = exitCode === 0 && signalCode === null && spawnError === undefined ? 'passed' : 'failed'
  771. const result: GateResult = {
  772. gate,
  773. status,
  774. durationMs: performance.now() - started,
  775. output,
  776. exitCode,
  777. signalCode,
  778. }
  779. if (spawnError !== undefined) result.error = spawnError
  780. return result
  781. }
  782. /**
  783. * Format every independently observed failure fact for the aggregate summary.
  784. * @param result - unsuccessful gate result.
  785. * @returns error, exit, and signal facts without allowing one to hide another.
  786. */
  787. export function formatGateResultReason(result: GateResult): string {
  788. const facts: string[] = []
  789. if (result.error !== undefined) facts.push(result.error)
  790. if (result.exitCode !== null) facts.push(`exit ${result.exitCode}`)
  791. if (result.signalCode !== null) facts.push(`signal ${result.signalCode}`)
  792. return facts.length === 0 ? 'no exit code or signal' : facts.join(', ')
  793. }
  794. function printResult(result: GateResult): void {
  795. const verbose = process.env.DSH_GATE_VERBOSE === '1'
  796. const seconds = (result.durationMs / 1000).toFixed(2)
  797. if (result.status === 'passed' && !verbose) {
  798. console.log(`run-gates: PASS ${result.gate.label} (${seconds}s)`)
  799. return
  800. }
  801. const heading = `${result.status.toUpperCase()} ${result.gate.label} (${seconds}s)`
  802. const writeHeading = result.status === 'passed' ? console.log : console.error
  803. writeHeading(`\n== ${heading} ==`)
  804. if (result.status !== 'passed') {
  805. console.error(`command: ${result.gate.displayCommand}`)
  806. console.error(`outcome: ${formatGateResultReason(result)}`)
  807. }
  808. printOutput(result.output)
  809. }
  810. function printSummary(results: GateResult[], durationMs: number): void {
  811. const passed = results.filter(result => result.status === 'passed').length
  812. const failed = results.filter(result => result.status === 'failed').length
  813. const skipped = results.filter(result => result.status === 'skipped').length
  814. const seconds = (durationMs / 1000).toFixed(2)
  815. console.log(`\nrun-gates: ${passed} passed, ${failed} failed, ${skipped} skipped in ${seconds}s.`)
  816. const unsuccessful = results.filter(result => result.status === 'failed' || result.status === 'skipped')
  817. if (unsuccessful.length === 0) return
  818. console.error('run-gates: unsuccessful gates:')
  819. for (const result of unsuccessful) {
  820. const duration = (result.durationMs / 1000).toFixed(2)
  821. const reason = formatGateResultReason(result)
  822. const disposition = result.gate.allowFailure === true ? 'NON-BLOCKING ' : ''
  823. console.error(` - ${disposition}${result.status.toUpperCase()} ${result.gate.label} (${duration}s, ${reason})`)
  824. console.error(` ${result.gate.displayCommand}`)
  825. }
  826. }
  827. function printOutput(output: GateOutputChunk[]): void {
  828. for (const chunk of output) {
  829. if (chunk.stream === 'stdout') process.stdout.write(chunk.text)
  830. else process.stderr.write(chunk.text)
  831. }
  832. }