run-gates.ts 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584
  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, spawnSync } from 'node:child_process'
  9. import { readdirSync, readFileSync } from 'node:fs'
  10. import { availableParallelism } from 'node:os'
  11. import { resolve } from 'node:path'
  12. import { performance } from 'node:perf_hooks'
  13. import { CLIENT_BUILD_PROFILE_SELECTOR } from './client-build-environment.ts'
  14. import { COVERAGE_EXEMPT_ENV, coverageExemptHeavySuites } from './coverage-exempt.ts'
  15. import {
  16. COVERAGE_PARTITIONS_ENV,
  17. COVERAGE_TEST_TIMEOUT_ENV,
  18. coverageTestTimeoutArgs,
  19. parseCoveragePartitionCount,
  20. } from './coverage-partitions.ts'
  21. import { pnpmInvocation } from './pnpm-invocation.ts'
  22. /** A named aggregate exposed by the gate runner. */
  23. export type Mode =
  24. | 'ci-primary'
  25. | 'ci-linux-primary'
  26. | 'ci-static'
  27. | 'ci-lint-contracts-ready'
  28. | 'ci-coverage'
  29. | 'ci-bench'
  30. | 'ci-snapshot'
  31. | 'ci-artifacts'
  32. | 'ci-consumers'
  33. | 'ci-windows-blocking'
  34. | 'ci-windows-complete'
  35. | 'ci-windows-observational'
  36. | 'node-compat'
  37. | 'check-all'
  38. | 'hygiene'
  39. | 'doc-sync'
  40. | 'doc-quick'
  41. type GateResultStatus = 'passed' | 'failed' | 'skipped'
  42. type GateState = 'pending' | 'running' | GateResultStatus
  43. /** A command and its dependency metadata inside one aggregate. */
  44. export interface Gate {
  45. id: string
  46. label: string
  47. displayCommand: string
  48. command: string
  49. args: string[]
  50. needs?: string[]
  51. /** Gate ids that must settle, regardless of outcome, before this gate starts. */
  52. after?: string[]
  53. env?: Record<string, string | undefined>
  54. /** Include this leaf in the build-free documentation aggregate. */
  55. quick?: boolean
  56. /** Keep a failure visible without failing the aggregate. */
  57. allowFailure?: boolean
  58. /** Write child output as it arrives instead of buffering it until completion. */
  59. streamOutput?: boolean
  60. }
  61. /** The observed outcome of one gate process. */
  62. export interface GateResult {
  63. gate: Gate
  64. status: GateResultStatus
  65. durationMs: number
  66. output: GateOutputChunk[]
  67. exitCode: number | null
  68. signalCode: NodeJS.Signals | null
  69. error?: string
  70. /** True when the shared abort signal terminated this gate before its outcome
  71. * was observed; such a result must not be reported as passed, even if the
  72. * child trapped the signal and exited zero. */
  73. aborted?: boolean
  74. }
  75. interface GateOutputChunk {
  76. stream: 'stdout' | 'stderr'
  77. text: string
  78. }
  79. interface RunningGate {
  80. gate: Gate
  81. promise: Promise<GateResult>
  82. }
  83. interface ConcurrencyDefault {
  84. workers: number
  85. source: string
  86. }
  87. type GateExecutor = (gate: Gate, signal?: AbortSignal) => Promise<GateResult>
  88. type ResultObserver = (result: GateResult) => void
  89. const root = resolve(import.meta.dirname, '..')
  90. if (import.meta.main) {
  91. process.exitCode = await main(process.argv.slice(2))
  92. }
  93. async function main(args: string[]): Promise<number> {
  94. const mode = parseMode(args[0])
  95. const gates = gatesForMode(mode)
  96. const concurrencyDefault = defaultConcurrency(mode, gates.length)
  97. const concurrencyOverride = process.env.DSH_GATE_CONCURRENCY
  98. const maxConcurrency = concurrencyFromEnv('DSH_GATE_CONCURRENCY', concurrencyDefault.workers)
  99. const concurrencySource = concurrencyOverride === undefined || concurrencyOverride === ''
  100. ? concurrencyDefault.source
  101. : '$DSH_GATE_CONCURRENCY'
  102. const failFast = flagEnabled('DSH_GATE_FAIL_FAST')
  103. const startedAt = performance.now()
  104. console.log(`run-gates: ${mode} running ${gates.length} gate(s) with ${maxConcurrency} worker(s) from ${concurrencySource}${failFast ? ', fail-fast after first blocking failure' : ''}.`)
  105. const results = await runGates(gates, maxConcurrency, runGate, printResult, cliGateOptions(failFast))
  106. printSummary(results, performance.now() - startedAt)
  107. return results.some(result => result.gate.allowFailure !== true && (result.status === 'failed' || result.status === 'skipped'))
  108. ? 1
  109. : 0
  110. }
  111. /**
  112. * The options the CLI entrypoint hands to the scheduler. Host signal
  113. * forwarding always follows fail-fast: children are detached only then, so
  114. * without it the forwarding would have no tree to drain.
  115. * @param failFast - whether `DSH_GATE_FAIL_FAST` is enabled.
  116. * @returns the scheduler options for the entrypoint.
  117. */
  118. export function cliGateOptions(failFast: boolean): RunGatesOptions {
  119. return { failFast, forwardProcessSignals: failFast }
  120. }
  121. function parseMode(raw: string | undefined): Mode {
  122. switch (raw) {
  123. case 'ci-primary':
  124. case 'ci-linux-primary':
  125. case 'ci-static':
  126. case 'ci-lint-contracts-ready':
  127. case 'ci-coverage':
  128. case 'ci-bench':
  129. case 'ci-snapshot':
  130. case 'ci-artifacts':
  131. case 'ci-consumers':
  132. case 'ci-windows-blocking':
  133. case 'ci-windows-complete':
  134. case 'ci-windows-observational':
  135. case 'node-compat':
  136. case 'check-all':
  137. case 'hygiene':
  138. case 'doc-sync':
  139. case 'doc-quick':
  140. return raw
  141. default:
  142. throw new Error(
  143. `run-gates: expected mode ci-primary | ci-linux-primary | ci-static | ci-lint-contracts-ready | ci-coverage | ci-bench | ci-snapshot | ci-artifacts | ci-consumers | ci-windows-blocking | ci-windows-complete | ci-windows-observational | node-compat | check-all | hygiene | doc-sync | doc-quick, got ${JSON.stringify(raw)}.`,
  144. )
  145. }
  146. }
  147. /**
  148. * Resolve the default worker count for one aggregate.
  149. * @param selectedMode - aggregate whose resource posture applies.
  150. * @param total - number of gates in the aggregate.
  151. * @param available - host CPU availability for ordinary modes.
  152. * @returns the default worker count and its diagnostic source.
  153. */
  154. export function defaultConcurrency(
  155. selectedMode: Mode,
  156. total: number,
  157. available = availableParallelism(),
  158. ): ConcurrencyDefault {
  159. if (selectedMode === 'ci-consumers') return { workers: total, source: 'ci-consumers gate count' }
  160. // Local modes cap workers: several doc gates each build a full ts.Program,
  161. // so an uncapped default on a large host trades wall clock for memory blowups.
  162. const localCap = selectedMode === 'check-all'
  163. || selectedMode === 'hygiene'
  164. || selectedMode === 'doc-sync'
  165. || selectedMode === 'doc-quick'
  166. const modeLimit = localCap ? Math.min(4, available) : available
  167. return {
  168. workers: Math.min(total, modeLimit),
  169. source: localCap
  170. ? `${available} available CPU(s), ${selectedMode} cap 4`
  171. : `${available} available CPU(s)`,
  172. }
  173. }
  174. function concurrencyFromEnv(name: string, fallback: number): number {
  175. const raw = process.env[name]
  176. if (raw === undefined || raw === '') return fallback
  177. const parsed = Number.parseInt(raw, 10)
  178. if (!Number.isSafeInteger(parsed) || parsed < 1) {
  179. throw new Error(`run-gates: ${name} must be a positive integer, got ${JSON.stringify(raw)}.`)
  180. }
  181. return parsed
  182. }
  183. function pnpmScript(id: string, script: string, options: Partial<Gate> = {}): Gate {
  184. return {
  185. id,
  186. label: options.label ?? script,
  187. displayCommand: `pnpm run ${script}`,
  188. ...pnpmInvocation(['run', script]),
  189. ...options,
  190. }
  191. }
  192. /** Build official client artifacts inside a CI aggregate without changing sibling gate environments. */
  193. function ciBuildGate(id = 'build', options: Partial<Gate> = {}): Gate {
  194. return pnpmScript(id, 'build', {
  195. ...options,
  196. env: { ...options.env, [CLIENT_BUILD_PROFILE_SELECTOR]: 'official' },
  197. })
  198. }
  199. function pnpmExec(id: string, args: string[], options: Partial<Gate> = {}): Gate {
  200. return {
  201. id,
  202. label: options.label ?? `pnpm exec ${args.join(' ')}`,
  203. displayCommand: `pnpm exec ${args.join(' ')}`,
  204. ...pnpmInvocation(['exec', ...args]),
  205. ...options,
  206. }
  207. }
  208. /**
  209. * Construct the complete gate list for a named aggregate.
  210. * @param selected - aggregate mode to construct.
  211. * @returns the aggregate's gate graph.
  212. */
  213. export function gatesForMode(selected: Mode): Gate[] {
  214. switch (selected) {
  215. case 'ci-primary':
  216. return ciPrimaryGates()
  217. case 'ci-linux-primary':
  218. return [...ciPrimaryGates(), webSnapshotGate(['built-package-invariants'])]
  219. case 'ci-static':
  220. return ciStaticGates({ ownsBuild: false })
  221. case 'ci-lint-contracts-ready':
  222. return [
  223. lintGate(),
  224. pnpmScript('duplication', 'duplication'),
  225. ]
  226. case 'ci-coverage':
  227. return coverageGates()
  228. case 'ci-bench':
  229. return [pnpmScript('bench', 'test:bench', { label: 'performance benchmarks' })]
  230. case 'ci-snapshot':
  231. return [ciBuildGate(), snapshotGate()]
  232. case 'ci-artifacts':
  233. return ciArtifactGates()
  234. case 'ci-consumers':
  235. return ciConsumerGates()
  236. case 'ci-windows-blocking':
  237. return ciWindowsBlockingGates()
  238. case 'ci-windows-complete':
  239. return ciWindowsCompleteGates()
  240. case 'ci-windows-observational':
  241. return ciWindowsObservationalGates()
  242. case 'node-compat':
  243. return nodeCompatGates()
  244. case 'check-all':
  245. return [
  246. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  247. pnpmScript('cordis-config', 'verify-cordis-config', { label: 'Cordis config' }),
  248. pnpmScript('client-domain-graph', 'verify-client-domain-graph', { label: 'client domain graph' }),
  249. pnpmScript('test', 'test'),
  250. pnpmScript('approval-policy', 'test:approval-policy', { label: 'Weighted approval policy' }),
  251. pnpmScript('issue-management', 'test:issue-management', { label: 'Issue management policy' }),
  252. pnpmScript('duplication', 'duplication'),
  253. snapshotGate(),
  254. expectedOutputGate(),
  255. pnpmScript('build', 'build'),
  256. pnpmScript('build:web', 'build:web'),
  257. ...hygieneLeafGates({ artifactNeeds: ['build'] }),
  258. ...docSyncLeafGates({
  259. docTypecheckNeeds: ['build'],
  260. docTypecheckEnv: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  261. docTypecheckScript: 'doc-typecheck:contracts-ready',
  262. }),
  263. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  264. ]
  265. case 'hygiene':
  266. return [
  267. ...hygieneLeafGates(),
  268. pnpmScript('cordis-config', 'verify-cordis-config', { label: 'Cordis config' }),
  269. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  270. pnpmScript('vendored-links', 'verify-vendored-links', { label: 'vendored links' }),
  271. ]
  272. case 'doc-sync':
  273. return docSyncLeafGates()
  274. case 'doc-quick':
  275. return docQuickLeafGates()
  276. }
  277. }
  278. function ciSharedStaticGates(): Gate[] {
  279. return [
  280. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  281. pnpmScript('application-entrypoints', 'verify-application-entrypoints', { label: 'application entrypoints' }),
  282. pnpmScript('constraints', 'constraints'),
  283. pnpmScript('package-dependencies', 'verify-package-dependencies', { label: 'package dependencies' }),
  284. pnpmScript('dsh-package-licenses', 'verify-dsh-package-licenses', { label: 'DSH package licenses' }),
  285. pnpmScript('package-invariants', 'verify-package-invariants', { label: 'package invariants' }),
  286. pnpmScript('cordis-config', 'verify-cordis-config', { label: 'Cordis config' }),
  287. pnpmScript('optional-dependency-imports', 'verify-optional-dependency-imports', {
  288. label: 'optional dependency imports',
  289. }),
  290. pnpmScript('client-packages', 'verify-client-packages', { label: 'client packages' }),
  291. pnpmScript('client-ui-i18n', 'verify-client-ui-i18n', { label: 'client UI i18n' }),
  292. pnpmScript('no-bare-dispatcher', 'verify-no-bare-dispatcher', { label: 'proxy-aware dispatchers' }),
  293. pnpmScript('approval-policy', 'test:approval-policy', { label: 'Weighted approval policy' }),
  294. pnpmScript('issue-management', 'test:issue-management', { label: 'Issue management policy' }),
  295. ]
  296. }
  297. function ciPrimaryGates(): Gate[] {
  298. return [
  299. ...ciSharedStaticGates(),
  300. typertContractsGate(),
  301. pnpmScript('typecheck', 'typecheck:contracts-ready', { needs: ['typert-contracts'] }),
  302. lintGate({ needs: ['typert-contracts'] }),
  303. pnpmScript('duplication', 'duplication'),
  304. ...coverageGates(),
  305. ...nodeCompatSmokeGates(),
  306. snapshotGate(),
  307. ...docSyncLeafGates({
  308. docTypecheckNeeds: ['typert-contracts'],
  309. docTypecheckScript: 'doc-typecheck:contracts-ready',
  310. }),
  311. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  312. // The prepared typecheck and build both drive Client tsc, while build also
  313. // repeats the Host contract pass. Wait for all three consumers so build
  314. // neither races tsbuildinfo nor replaces declarations while they are read.
  315. ciBuildGate('build', { needs: ['typecheck', 'lint', 'doc-typecheck'] }),
  316. pnpmScript('publint', 'publint', { needs: ['build'] }),
  317. pnpmScript('node-next-types', 'verify-node-next-types', {
  318. label: 'node-next types',
  319. needs: ['build'],
  320. }),
  321. builtPackageInvariantsGate(['build']),
  322. builtBinSmokeGate(),
  323. ]
  324. }
  325. function nodeCompatGates(): Gate[] {
  326. const typecheck = flagEnabled('DSH_NODE_COMPAT_SKIP_TYPECHECK')
  327. ? []
  328. : [pnpmScript('typecheck', 'typecheck')]
  329. if (runningNodeMajor() !== 22) {
  330. return [...typecheck, ...nodeCompatSmokeGates()]
  331. }
  332. return [
  333. ...typecheck,
  334. pnpmScript('build', 'build', {
  335. ...typecheck.length === 0 ? {} : { needs: ['typecheck'] },
  336. }),
  337. pnpmScript('build:web', 'build:web', {
  338. label: 'Web frontend build',
  339. needs: ['build'],
  340. }),
  341. ...nodeCompatSmokeGates({ cliSmoke: true }),
  342. ]
  343. }
  344. function nodeCompatSmokeGates(options: { cliSmoke?: boolean } = {}): Gate[] {
  345. const gates: Gate[] = [
  346. pnpmExec('source-worker-smoke', [
  347. 'vitest',
  348. 'run',
  349. 'packages/workflow/workflow-worker-thread/tests/source-worker.compat.spec.ts',
  350. ], { label: 'source worker smoke' }),
  351. pnpmExec('jsonl-zstd-smoke', [
  352. 'vitest',
  353. 'run',
  354. 'packages/session/session-persistence-jsonl/tests/zstd.compat.spec.ts',
  355. ], { label: 'JSONL Zstandard smoke' }),
  356. pnpmExec('dsh-source-launch-smoke', [
  357. 'vitest',
  358. 'run',
  359. 'apps/cli/tests/source-launch.compat.spec.ts',
  360. ], { label: 'dsh source-launch smoke' }),
  361. pnpmExec('vitest-jsdom-smoke', [
  362. 'vitest',
  363. 'run',
  364. 'scripts/vitest-environment.compat.spec.ts',
  365. ], { label: 'Vitest jsdom smoke' }),
  366. ]
  367. if (options.cliSmoke) {
  368. gates.push(
  369. pnpmExec('cli-lazy-search-startup-smoke', [
  370. 'vitest',
  371. 'run',
  372. 'apps/cli/tests/lazy-search-startup.compat.spec.ts',
  373. ], {
  374. label: 'CLI lazy-search startup smoke',
  375. env: { DSH_REQUIRE_BUILT_CLI_SMOKE: '1' },
  376. needs: ['build:web'],
  377. }),
  378. )
  379. }
  380. return gates
  381. }
  382. /** Active Node major used to select version-specific compatibility checks. */
  383. function runningNodeMajor(): number {
  384. const major = Number.parseInt(process.versions.node.split('.')[0] ?? '', 10)
  385. if (!Number.isSafeInteger(major)) {
  386. throw new Error(`run-gates: cannot parse Node version ${JSON.stringify(process.versions.node)}.`)
  387. }
  388. return major
  389. }
  390. function ciStaticGates(options: { ownsBuild: boolean }): Gate[] {
  391. return [
  392. ...ciSharedStaticGates(),
  393. ...options.ownsBuild ? [ciBuildGate()] : [],
  394. ...docSyncLeafGates({
  395. includeDocTypecheck: options.ownsBuild,
  396. ...options.ownsBuild
  397. ? {
  398. docTypecheckNeeds: ['build'],
  399. docTypecheckEnv: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  400. docTypecheckScript: 'doc-typecheck:contracts-ready',
  401. }
  402. : {},
  403. docsBuildScript: 'docs:build:mpa',
  404. }),
  405. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  406. ]
  407. }
  408. function ciArtifactGates(): Gate[] {
  409. return [
  410. ciBuildGate(),
  411. pnpmScript('publint', 'publint', { needs: ['build'] }),
  412. pnpmScript('node-next-types', 'verify-node-next-types', {
  413. label: 'node-next types',
  414. needs: ['build'],
  415. }),
  416. builtPackageInvariantsGate(['build']),
  417. builtBinSmokeGate(),
  418. ]
  419. }
  420. function ciConsumerGates(): Gate[] {
  421. const builtTree = ['build']
  422. const validatedBuild = ['built-package-invariants']
  423. // The HMR web test starts `dev:web`, which rewrites the shared `lib/` and
  424. // `apps/web/dist/` trees. Let every build-artifact reader settle before that
  425. // writer starts; `after` preserves the web diagnostic even if a reader fails.
  426. const buildArtifactReaders = [
  427. 'publint',
  428. 'lint-and-duplication',
  429. 'snapshot',
  430. 'expected-output',
  431. 'doc-typecheck',
  432. 'node-next-types',
  433. 'built-bin-smoke',
  434. ]
  435. return [
  436. ciBuildGate(),
  437. pnpmScript('node-compat', 'check:node-compat', {
  438. label: 'Node compatibility',
  439. env: { [CLIENT_BUILD_PROFILE_SELECTOR]: 'official' },
  440. }),
  441. pnpmScript('publint', 'publint', { needs: builtTree }),
  442. builtPackageInvariantsGate(builtTree),
  443. pnpmScript('lint-and-duplication', 'check:ci:lint:contracts-ready', {
  444. label: 'lint and duplication',
  445. needs: validatedBuild,
  446. }),
  447. snapshotGate(validatedBuild),
  448. expectedOutputGate(validatedBuild),
  449. webSnapshotGate(validatedBuild, buildArtifactReaders),
  450. pnpmScript('doc-typecheck', 'doc-typecheck:contracts-ready', {
  451. needs: validatedBuild,
  452. env: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  453. }),
  454. pnpmScript('node-next-types', 'verify-node-next-types', {
  455. label: 'node-next types',
  456. needs: validatedBuild,
  457. }),
  458. builtBinSmokeGate(validatedBuild),
  459. ]
  460. }
  461. function webSnapshotGate(needs: string[], after?: string[]): Gate {
  462. const order = after === undefined ? { needs } : { needs, after }
  463. const workerRaw = process.env.DSH_WEB_SNAPSHOT_WORKERS
  464. if (workerRaw !== undefined && workerRaw !== '') {
  465. const workers = Number.parseInt(workerRaw, 10)
  466. if (!Number.isSafeInteger(workers) || workers < 2 || String(workers) !== workerRaw) {
  467. throw new Error(`run-gates: DSH_WEB_SNAPSHOT_WORKERS must be an integer greater than 1, got ${JSON.stringify(workerRaw)}.`)
  468. }
  469. return pnpmScript('web-snapshot', 'test:web:ci', {
  470. label: 'web browser snapshot',
  471. displayCommand: `DSH_SNAPSHOT=replay DSH_WEB_SNAPSHOT_WORKERS=${workers} pnpm run test:web:ci`,
  472. env: { DSH_SNAPSHOT: 'replay' },
  473. ...order,
  474. streamOutput: true,
  475. })
  476. }
  477. return pnpmScript('web-snapshot', 'test:web:built', {
  478. label: 'web browser snapshot',
  479. displayCommand: 'DSH_SNAPSHOT=replay pnpm run test:web:built',
  480. env: { DSH_SNAPSHOT: 'replay' },
  481. ...order,
  482. })
  483. }
  484. function ciWindowsBlockingGates(): Gate[] {
  485. return [
  486. ciBuildGate('windows-build', { label: 'build' }),
  487. pnpmScript('windows-site', 'docs:build', { label: 'production site' }),
  488. ]
  489. }
  490. function ciWindowsCompleteGates(): Gate[] {
  491. const coverage = coverageGates().map(gate => ({
  492. ...gate,
  493. needs: [...new Set(['build', ...(gate.needs ?? [])])],
  494. }))
  495. const coverageAfter = coverage.map(gate => gate.id)
  496. const observational = ciWindowsObservationalGates()
  497. // The required production site replaces the observational MPA build; both
  498. // VitePress modes write the same output directory and cannot overlap.
  499. .filter(gate => gate.id !== 'build' && gate.id !== 'docs-site-build')
  500. .map(gate => ({
  501. ...gate,
  502. allowFailure: true,
  503. after: [...new Set([
  504. ...coverageAfter,
  505. ...(gate.after ?? []).map(id => id === 'docs-site-build' ? 'windows-site' : id),
  506. ])],
  507. }))
  508. return [
  509. ciBuildGate(),
  510. pnpmScript('windows-site', 'docs:build', { label: 'production site' }),
  511. ...coverage,
  512. ...observational,
  513. ]
  514. }
  515. function ciWindowsObservationalGates(): Gate[] {
  516. const predecessors = [
  517. ...ciStaticGates({ ownsBuild: true }),
  518. // Linux owns required lint and snapshots; Windows omits those duplicates.
  519. pnpmScript('duplication', 'duplication'),
  520. pnpmScript('publint', 'publint', { needs: ['build'] }),
  521. pnpmScript('node-next-types', 'verify-node-next-types', {
  522. label: 'node-next types',
  523. needs: ['build'],
  524. }),
  525. builtPackageInvariantsGate(['build']),
  526. ]
  527. return [
  528. ...predecessors,
  529. {
  530. ...builtBinSmokeGate(),
  531. // This smoke starts real application children with bounded startup
  532. // deadlines. Let other Windows processes settle before measuring startup.
  533. after: predecessors.map(gate => gate.id),
  534. },
  535. ]
  536. }
  537. function typertContractsGate(): Gate {
  538. return pnpmScript('typert-contracts', 'build:lib:host', { label: 'Typert contracts' })
  539. }
  540. function lintGate(options: { needs?: string[] } = {}): Gate {
  541. const raw = process.env.DSH_OXLINT_THREADS
  542. const script = 'lint:contracts-ready'
  543. return pnpmScript('lint', script, {
  544. ...raw === undefined || raw === ''
  545. ? {}
  546. : { displayCommand: `DSH_OXLINT_THREADS=${raw} pnpm run ${script}` },
  547. ...options.needs === undefined ? {} : { needs: options.needs },
  548. })
  549. }
  550. // The heavy suites run uninstrumented beside the thresholded gate: their
  551. // compiler- and subprocess-bound fixtures pay a multiple of their runtime
  552. // under v8 instrumentation while contributing nothing the thresholds need
  553. // (membership rules in scripts/coverage-exempt.ts).
  554. //
  555. // DSH_COVERAGE_MAX_WORKERS is the ordinary lane's worker budget, so the two
  556. // parallel gates split it instead of each claiming it whole. When
  557. // DSH_COVERAGE_PARTITIONS is set, its single-worker processes replace the
  558. // instrumented share while this budget still sizes the exempt gate. The exempt
  559. // gate's wall clock is dominated by its longest single file, so it takes the
  560. // small share. A budget of 1 gives each gate 1 worker; lanes that need a strict
  561. // total of one (the serial reference jobs) also set DSH_GATE_CONCURRENCY=1,
  562. // which keeps the gates from overlapping at all.
  563. // DSH_COVERAGE_TEST_TIMEOUT_MS raises Vitest's per-test, expect.poll, and hook
  564. // defaults together for instrumented lanes whose scheduling overhead exceeds
  565. // those defaults. Explicit fixture timeouts remain authoritative.
  566. function coverageWorkerArgs(): { instrumented: string[]; exempt: string[] } {
  567. const [flag] = positiveIntArg('DSH_COVERAGE_MAX_WORKERS', '--maxWorkers')
  568. if (flag === undefined) return { instrumented: [], exempt: [] }
  569. const total = Number.parseInt(flag.split('=')[1] ?? '', 10)
  570. const exempt = Math.max(1, Math.floor(total / 3))
  571. const instrumented = Math.max(1, total - exempt)
  572. return {
  573. instrumented: [`--maxWorkers=${String(instrumented)}`],
  574. exempt: [`--maxWorkers=${String(exempt)}`],
  575. }
  576. }
  577. function coverageGates(): Gate[] {
  578. const workers = coverageWorkerArgs()
  579. const timeouts = coverageTestTimeoutArgs(process.env[COVERAGE_TEST_TIMEOUT_ENV])
  580. const partitions = parseCoveragePartitionCount(process.env[COVERAGE_PARTITIONS_ENV])
  581. const instrumented = partitions === undefined
  582. ? pnpmExec('coverage', [
  583. 'vitest',
  584. 'run',
  585. '--coverage',
  586. ...workers.instrumented,
  587. ...timeouts,
  588. ], {
  589. label: 'test:coverage',
  590. env: { [COVERAGE_EXEMPT_ENV]: '1' },
  591. })
  592. : pnpmScript('coverage', 'test:coverage:partitioned', {
  593. label: 'test:coverage',
  594. displayCommand: `${COVERAGE_PARTITIONS_ENV}=${partitions} pnpm run test:coverage:partitioned`,
  595. env: { [COVERAGE_EXEMPT_ENV]: '1' },
  596. streamOutput: true,
  597. })
  598. return [
  599. pnpmScript('native-system', 'build:native-system'),
  600. { ...instrumented, needs: ['native-system'] },
  601. pnpmExec('coverage-exempt-heavy', [
  602. 'vitest',
  603. 'run',
  604. ...coverageExemptHeavySuites.map(suite => suite.filter),
  605. ...workers.exempt,
  606. ...timeouts,
  607. ], {
  608. label: 'test:coverage-exempt-heavy',
  609. needs: ['native-system'],
  610. }),
  611. ]
  612. }
  613. // Recorded-session adapters boot process scenarios in `lib` mode. Callers wait
  614. // either on `build` or on a validation gate that transitively owns that build.
  615. function snapshotGate(needs: string[] = ['build']): Gate {
  616. return pnpmScript('snapshot', 'test:snapshot', {
  617. env: { DSH_EXAMPLE_MODE: 'lib' },
  618. needs,
  619. })
  620. }
  621. // Owner-local process expectations consume built package exports without entering
  622. // the recorded-session corpus or the credentialed provider lane.
  623. function expectedOutputGate(needs: string[] = ['build']): Gate {
  624. return pnpmScript('expected-output', 'test:expected', {
  625. env: { DSH_EXAMPLE_MODE: 'lib' },
  626. needs,
  627. })
  628. }
  629. function builtPackageInvariantsGate(needs?: string[]): Gate {
  630. return pnpmScript('built-package-invariants', 'verify-built-package-invariants', {
  631. label: 'built package invariants',
  632. ...needs === undefined ? {} : { needs },
  633. })
  634. }
  635. function positiveIntArg(envName: string, flag: string): string[] {
  636. const raw = process.env[envName]
  637. if (raw === undefined || raw === '') return []
  638. const parsed = Number.parseInt(raw, 10)
  639. if (!Number.isSafeInteger(parsed) || parsed < 1 || String(parsed) !== raw) {
  640. throw new Error(`run-gates: ${envName} must be a positive integer, got ${JSON.stringify(raw)}.`)
  641. }
  642. return [`${flag}=${raw}`]
  643. }
  644. function flagEnabled(envName: string): boolean {
  645. const raw = process.env[envName]
  646. if (raw === undefined || raw === '') return false
  647. if (raw !== '1') throw new Error(`run-gates: ${envName} must be 1 when set, got ${JSON.stringify(raw)}.`)
  648. return true
  649. }
  650. function hygieneLeafGates(options: { artifactNeeds?: string[] } = {}): Gate[] {
  651. const artifactOptions = options.artifactNeeds === undefined ? {} : { needs: options.artifactNeeds }
  652. return [
  653. pnpmScript('rescope-vendor', 'rescope-vendor:check', { label: 'vendor rescope' }),
  654. pnpmScript('publint', 'publint', artifactOptions),
  655. pnpmScript('constraints', 'constraints'),
  656. pnpmScript('package-dependencies', 'verify-package-dependencies', { label: 'package dependencies' }),
  657. pnpmScript('application-entrypoints', 'verify-application-entrypoints', { label: 'application entrypoints' }),
  658. pnpmScript('dsh-package-licenses', 'verify-dsh-package-licenses', { label: 'DSH package licenses' }),
  659. pnpmScript('package-invariants', 'verify-package-invariants', { label: 'package invariants' }),
  660. builtPackageInvariantsGate(options.artifactNeeds),
  661. pnpmScript('node-next-types', 'verify-node-next-types', {
  662. label: 'node-next types',
  663. ...artifactOptions,
  664. }),
  665. pnpmScript('optional-dependency-imports', 'verify-optional-dependency-imports', {
  666. label: 'optional dependency imports',
  667. }),
  668. pnpmScript('client-packages', 'verify-client-packages', { label: 'client packages' }),
  669. pnpmScript('client-ui-i18n', 'verify-client-ui-i18n', { label: 'client UI i18n' }),
  670. pnpmScript('no-bare-dispatcher', 'verify-no-bare-dispatcher', { label: 'proxy-aware dispatchers' }),
  671. ]
  672. }
  673. function docSyncLeafGates(options: {
  674. includeDocTypecheck?: boolean
  675. docTypecheckNeeds?: string[]
  676. docTypecheckEnv?: Record<string, string | undefined>
  677. docTypecheckScript?: 'doc-typecheck' | 'doc-typecheck:contracts-ready'
  678. docsBuildScript?: 'docs:build' | 'docs:build:mpa'
  679. } = {}): Gate[] {
  680. const docTypecheckOptions: Partial<Gate> = {}
  681. if (options.docTypecheckNeeds !== undefined) docTypecheckOptions.needs = options.docTypecheckNeeds
  682. if (options.docTypecheckEnv !== undefined) docTypecheckOptions.env = options.docTypecheckEnv
  683. return [
  684. // Stable FIFO starts the longest leaves first; only docs-site-build writes website/.generated.
  685. ...options.includeDocTypecheck === false
  686. ? []
  687. : [pnpmScript('doc-typecheck', options.docTypecheckScript ?? 'doc-typecheck', docTypecheckOptions)],
  688. pnpmScript('docs-site-build', options.docsBuildScript ?? 'docs:build', { label: 'documentation build' }),
  689. pnpmScript('doc-graphs', 'verify-doc-graphs', { label: 'doc graphs' }),
  690. pnpmScript('markdown-links', 'verify-md-links', { label: 'markdown links', quick: true }),
  691. pnpmScript('type-equivalence', 'verify-type-equiv', { label: 'type equivalence', quick: true }),
  692. pnpmScript('cordis-catalog', 'verify-cordis-catalog', { label: 'cordis catalog' }),
  693. pnpmScript('cordis-inspect-catalog', 'verify-cordis-inspect-catalog', { label: 'Cordis inspect catalog' }),
  694. pnpmScript('mermaid', 'verify-mermaid'),
  695. pnpmScript('scoped-events', 'verify-scoped-events', { label: 'scoped events' }),
  696. pnpmScript('translation-pairing', 'verify-translation-pairing', { label: 'translation pairing', quick: true }),
  697. pnpmScript('markdown-wrap', 'verify-md-wrap', { label: 'markdown wrap', quick: true }),
  698. pnpmScript('client-catalog', 'verify-client-catalog', { label: 'client catalog' }),
  699. pnpmScript('export-jsdoc', 'verify-export-jsdoc', { label: 'export jsdoc' }),
  700. pnpmScript('tool-catalog', 'verify-tool-catalog', { label: 'tool catalog' }),
  701. pnpmScript('config-catalog', 'verify-config-catalog', { label: 'config catalog' }),
  702. pnpmScript('persistence-catalog', 'verify-persistence-catalog', { label: 'persistence catalog' }),
  703. pnpmScript('session-format-catalog', 'verify-session-format-catalog', { label: 'Session format catalog' }),
  704. pnpmScript('public-repository-links', 'verify-public-repository-links', { label: 'public repository links', quick: true }),
  705. pnpmScript('doc-refs', 'verify-doc-refs', { label: 'doc refs', quick: true }),
  706. pnpmScript('subsystem-pages', 'verify-subsystem-pages', { label: 'subsystem pages' }),
  707. pnpmScript('package-paths', 'verify-package-paths', { label: 'package paths' }),
  708. pnpmScript('tsconfig-paths', 'verify-tsconfig-paths', { label: 'tsconfig paths' }),
  709. pnpmScript('config-source-ownership', 'verify-config-source-ownership', { label: 'config source ownership' }),
  710. pnpmScript('package-readme-summaries', 'verify-package-readme-summaries', { label: 'package README Summaries', quick: true }),
  711. pnpmScript('package-readme-model-experience', 'verify-package-readme-model-experience', { label: 'package README model experience', quick: true }),
  712. pnpmScript('agent-note-classification', 'verify-agent-note-classification', { label: 'agent note classification', quick: true }),
  713. pnpmScript('agent-note-format', 'verify-agent-note-format', { label: 'agent note format', quick: true }),
  714. pnpmScript('archived-agent-notes', 'verify-archived-agent-notes', { label: 'archived agent notes', quick: true }),
  715. pnpmScript('skill-invocation-metadata', 'verify-skill-invocation-metadata', { label: 'skill invocation metadata', quick: true }),
  716. pnpmScript('translation-prompt', 'verify-translation-prompt', { label: 'translation prompt', quick: true }),
  717. pnpmScript('doc-budgets', 'verify-doc-budgets', { label: 'doc budgets', quick: true }),
  718. pnpmExec('doc-standard-tests', ['vitest', 'run', 'scripts/doc-standard.spec.ts'], {
  719. label: 'documentation standard tests',
  720. quick: true,
  721. }),
  722. pnpmExec('docs-site-projection', ['vitest', 'run', 'scripts/project-doc-site.spec.ts', 'scripts/verify-doc-site-fragments.spec.ts'], {
  723. label: 'documentation site checks',
  724. }),
  725. pnpmScript('package-readme-limitations', 'verify-package-readme-limitations', { label: 'package README limitations', quick: true }),
  726. ]
  727. }
  728. /**
  729. * The quick comprehensive documentation-standard aggregate for `test:docs`.
  730. * It covers the prose, pairing, README, budget, and Agent Note gates
  731. * without builds, generator regeneration, or the VitePress site build.
  732. */
  733. function docQuickLeafGates(): Gate[] {
  734. return docSyncLeafGates({ includeDocTypecheck: false }).filter(gate => gate.quick === true)
  735. }
  736. function builtBinSmokeGate(needs: string[] = ['build']): Gate {
  737. return pnpmExec('built-bin-smoke', [
  738. 'vitest',
  739. 'run',
  740. '--config',
  741. 'vitest.e2e.config.ts',
  742. 'apps/cli/tests/profiles/headless/tests/keyless-smoke.e2e.ts',
  743. 'apps/cli/tests/built-bin.e2e.ts',
  744. 'packages/host/directory-picker-native/tests/built-worker.e2e.ts',
  745. 'packages/sdk/server/tests/built-scope-carrier.e2e.ts',
  746. 'packages/fs/tool-present/tests/built-errors.e2e.ts',
  747. 'packages/subprocess/subprocess-local/tests/spawn-runner-built.e2e.ts',
  748. 'packages/subagent/subagent-codex/tests/loader-composition.e2e.ts',
  749. 'packages/subagent/subagent-claude-code/tests/loader-composition.e2e.ts',
  750. 'packages/api/remotes/tests/built-lib.e2e.ts',
  751. 'packages/experimental/agent-team/tests/built-lib.e2e.ts',
  752. // Built execution consumers: the only automated proof that package-name
  753. // imports reach their lib/ entrypoints under plain Node. The e2e lane runs
  754. // unbuilt, so these files self-skip there.
  755. 'packages/workflow/workflow-worker-thread/tests/built-worker.e2e.ts',
  756. 'packages/code-runtime/code-runtime-worker-thread/tests/built-lib.e2e.ts',
  757. 'packages/session/session-persistence-jsonl/tests/built-migration-worker.e2e.ts',
  758. 'packages/lsp/lsp-stdio/tests/built-lib.e2e.ts',
  759. ], {
  760. label: 'built-bin smoke',
  761. needs,
  762. env: { DSH_EXAMPLE_MODE: 'lib' },
  763. })
  764. }
  765. /**
  766. * Reject a gate list whose graph cannot be executed unambiguously.
  767. * @param gates - complete aggregate to validate.
  768. */
  769. function validateGateGraph(gates: readonly Gate[]): void {
  770. if (gates.length === 0) throw new Error('run-gates: gate graph has no gates.')
  771. const ids = new Set<string>()
  772. for (const gate of gates) {
  773. if (ids.has(gate.id)) throw new Error(`run-gates: duplicate gate id ${JSON.stringify(gate.id)}.`)
  774. ids.add(gate.id)
  775. }
  776. for (const gate of gates) {
  777. for (const dependency of gate.needs ?? []) {
  778. if (!ids.has(dependency)) {
  779. throw new Error(`run-gates: gate ${JSON.stringify(gate.id)} depends on unknown gate ${JSON.stringify(dependency)}.`)
  780. }
  781. }
  782. for (const predecessor of gate.after ?? []) {
  783. if (!ids.has(predecessor)) {
  784. throw new Error(`run-gates: gate ${JSON.stringify(gate.id)} waits for unknown gate ${JSON.stringify(predecessor)}.`)
  785. }
  786. }
  787. }
  788. const cycle = findDependencyCycle(gates)
  789. if (cycle !== undefined) throw new Error(`run-gates: dependency cycle: ${cycle.join(' -> ')}.`)
  790. }
  791. function findDependencyCycle(gates: readonly Gate[]): string[] | undefined {
  792. const byId = new Map(gates.map(gate => [gate.id, gate]))
  793. const complete = new Set<string>()
  794. const active = new Map<string, number>()
  795. const path: string[] = []
  796. const visit = (id: string): string[] | undefined => {
  797. if (complete.has(id)) return undefined
  798. const cycleStart = active.get(id)
  799. if (cycleStart !== undefined) return [...path.slice(cycleStart), id]
  800. const gate = byId.get(id)
  801. if (gate === undefined) return undefined
  802. active.set(id, path.length)
  803. path.push(id)
  804. for (const predecessor of [...(gate.needs ?? []), ...(gate.after ?? [])]) {
  805. const cycle = visit(predecessor)
  806. if (cycle !== undefined) return cycle
  807. }
  808. path.pop()
  809. active.delete(id)
  810. complete.add(id)
  811. return undefined
  812. }
  813. for (const gate of gates) {
  814. const cycle = visit(gate.id)
  815. if (cycle !== undefined) return cycle
  816. }
  817. return undefined
  818. }
  819. /**
  820. * Scheduling options for one aggregate.
  821. */
  822. export interface RunGatesOptions {
  823. /** Stop the aggregate at the first blocking gate failure. */
  824. failFast?: boolean
  825. /** Forward host SIGINT/SIGTERM to the abort path so detached gate trees are
  826. * terminated when the run itself is interrupted or the runner cancels it.
  827. * Tree termination additionally requires failFast, because only then is the
  828. * abort signal passed to the executor and children detached. */
  829. forwardProcessSignals?: boolean
  830. }
  831. /**
  832. * Validate and run one aggregate before the injected executor can start a child.
  833. * @param gates - complete aggregate to execute.
  834. * @param maxActive - maximum concurrent child count.
  835. * @param execute - child-process executor; receives the abort signal only when
  836. * fail-fast is enabled, so ordinary runs keep their children in the host
  837. * process group.
  838. * @param observe - result observer invoked when each gate settles.
  839. * @param options - scheduling options; fail-fast aborts the aggregate at the
  840. * first blocking gate failure by killing running children and skipping every
  841. * not-yet-run gate.
  842. * @returns results in aggregate order.
  843. */
  844. export async function runGates(
  845. gates: Gate[],
  846. maxActive: number,
  847. execute: GateExecutor,
  848. observe: ResultObserver = () => {},
  849. options: RunGatesOptions = {},
  850. ): Promise<GateResult[]> {
  851. validateGateGraph(gates)
  852. if (!Number.isSafeInteger(maxActive) || maxActive < 1) {
  853. throw new Error(`run-gates: max concurrency must be a positive integer, got ${JSON.stringify(maxActive)}.`)
  854. }
  855. if (options.forwardProcessSignals === true && options.failFast !== true) {
  856. throw new Error('run-gates: forwardProcessSignals requires failFast, otherwise no child is detached or killed.')
  857. }
  858. const states = new Map<string, GateState>(gates.map(gate => [gate.id, 'pending']))
  859. const results = new Map<string, GateResult>()
  860. const running: RunningGate[] = []
  861. const abort = new AbortController()
  862. let abortCause: string | undefined
  863. // Host interruption (terminal Ctrl+C, runner cancellation) drains through
  864. // the same abort path as a gate failure, so detached trees are killed and
  865. // never orphaned. Handlers are removed before returning.
  866. const hostSignals = options.forwardProcessSignals === true ? ['SIGINT', 'SIGTERM'] as const : []
  867. const hostHandlers = hostSignals.map((name) => {
  868. const handler = () => {
  869. abortCause = abortCause ?? 'host interruption'
  870. abort.abort()
  871. }
  872. process.on(name, handler)
  873. return { name, handler }
  874. })
  875. const failFastSignal = options.failFast === true ? abort.signal : undefined
  876. try {
  877. for (;;) {
  878. let madeProgress = false
  879. if (abortCause === undefined) {
  880. while (running.length < maxActive) {
  881. const ready = gates.find(gate => states.get(gate.id) === 'pending' && predecessorsReady(gate, states))
  882. if (ready === undefined) break
  883. states.set(ready.id, 'running')
  884. running.push({ gate: ready, promise: execute(ready, failFastSignal) })
  885. console.log(`run-gates: start ${ready.label}`)
  886. madeProgress = true
  887. }
  888. }
  889. if (running.length === 0) {
  890. if (abortCause !== undefined) {
  891. for (const gate of gates) {
  892. if (states.get(gate.id) !== 'pending') continue
  893. const skipped = skippedByFailFast(gate, abortCause)
  894. states.set(gate.id, 'skipped')
  895. results.set(gate.id, skipped)
  896. observe(skipped)
  897. }
  898. break
  899. }
  900. const pending = gates.filter(gate => states.get(gate.id) === 'pending')
  901. if (pending.length === 0) break
  902. const gate = pending.find(item => (item.needs ?? []).some(id => gateFailed(states.get(id))))
  903. if (gate === undefined) throw new Error('run-gates: validated graph stalled without a failed dependency.')
  904. const failedDeps = (gate.needs ?? []).filter(id => gateFailed(states.get(id)))
  905. const result: GateResult = {
  906. gate,
  907. status: 'skipped',
  908. durationMs: 0,
  909. output: [],
  910. exitCode: null,
  911. signalCode: null,
  912. error: `dependency failed or skipped: ${failedDeps.join(', ')}`,
  913. }
  914. states.set(gate.id, 'skipped')
  915. results.set(gate.id, result)
  916. observe(result)
  917. continue
  918. }
  919. if (!madeProgress) {
  920. const settled = await Promise.race(running.map(async item => ({ item, result: await item.promise })))
  921. running.splice(running.indexOf(settled.item), 1)
  922. const observed = abortCause === undefined || settled.result.aborted !== true
  923. ? settled.result
  924. : skippedByFailFast(settled.item.gate, abortCause)
  925. states.set(settled.item.gate.id, observed.status)
  926. results.set(settled.item.gate.id, observed)
  927. observe(observed)
  928. if (abortCause === undefined && options.failFast === true
  929. && observed.status === 'failed' && settled.item.gate.allowFailure !== true) {
  930. abortCause = `${observed.gate.label} failed`
  931. abort.abort()
  932. console.error(`run-gates: fail-fast aborting: ${abortCause}.`)
  933. for (const gate of gates) {
  934. if (states.get(gate.id) !== 'pending') continue
  935. const skipped = skippedByFailFast(gate, abortCause)
  936. states.set(gate.id, 'skipped')
  937. results.set(gate.id, skipped)
  938. observe(skipped)
  939. }
  940. }
  941. }
  942. }
  943. } finally {
  944. for (const { name, handler } of hostHandlers) process.removeListener(name, handler)
  945. }
  946. return gates.map((gate) => {
  947. const result = results.get(gate.id)
  948. if (result === undefined) throw new Error(`run-gates: missing result for ${gate.id}.`)
  949. return result
  950. })
  951. }
  952. /**
  953. * The result of a gate that produced no evidence because fail-fast aborted.
  954. * A gate whose process settled before the abort took effect keeps its real
  955. * result instead: it did produce evidence, and the summary must say so. Any
  956. * result settling after the abort — including a genuine independent failure
  957. * in the race window, and a child that trapped the signal and exited zero —
  958. * is recorded skipped with its partial output discarded, because on Windows a
  959. * killed process is indistinguishable from a failed one by exit code alone.
  960. * @param gate - the gate that produced no evidence.
  961. * @param cause - the full clause naming what aborted the aggregate, e.g.
  962. * `typecheck failed` or `host interruption`.
  963. * @returns the skipped record with the fail-fast error.
  964. */
  965. function skippedByFailFast(gate: Gate, cause: string): GateResult {
  966. return {
  967. gate,
  968. status: 'skipped',
  969. durationMs: 0,
  970. output: [],
  971. exitCode: null,
  972. signalCode: null,
  973. error: `aborted by fail-fast: ${cause}`,
  974. }
  975. }
  976. function predecessorsReady(gate: Gate, states: Map<string, GateState>): boolean {
  977. return (gate.needs ?? []).every(id => states.get(id) === 'passed')
  978. && (gate.after ?? []).every(id => gateSettled(states.get(id)))
  979. }
  980. function gateSettled(state: GateState | undefined): boolean {
  981. return state === 'passed' || state === 'failed' || state === 'skipped'
  982. }
  983. function gateFailed(state: GateState | undefined): boolean {
  984. return state === 'failed' || state === 'skipped'
  985. }
  986. /**
  987. * Execute one gate through the real shell-free child-process boundary.
  988. * @param gate - command and scheduler environment to execute.
  989. * @param signal - abort signal that terminates the whole gate process tree when
  990. * the aggregate fails fast; an already-aborted signal terminates it
  991. * immediately. A provided signal spawns the child detached so POSIX can signal
  992. * its process group and Windows can reach its tree through taskkill.
  993. * @returns the complete process outcome.
  994. */
  995. export async function runGate(gate: Gate, signal?: AbortSignal): Promise<GateResult> {
  996. const started = performance.now()
  997. const output: GateOutputChunk[] = []
  998. let spawnError: string | undefined
  999. let aborted = false
  1000. const outcome = await new Promise<{
  1001. exitCode: number | null
  1002. signalCode: NodeJS.Signals | null
  1003. }>((resolveExit) => {
  1004. const child = spawn(gate.command, gate.args, {
  1005. cwd: root,
  1006. env: { ...process.env, ...gate.env },
  1007. stdio: ['pipe', 'pipe', 'pipe'],
  1008. detached: signal !== undefined && process.platform !== 'win32',
  1009. })
  1010. child.stdout.setEncoding('utf8')
  1011. child.stderr.setEncoding('utf8')
  1012. child.stdout.on('data', (chunk: string) => {
  1013. if (gate.streamOutput === true) process.stdout.write(chunk)
  1014. else output.push({ stream: 'stdout', text: chunk })
  1015. })
  1016. child.stderr.on('data', (chunk: string) => {
  1017. if (gate.streamOutput === true) process.stderr.write(chunk)
  1018. else output.push({ stream: 'stderr', text: chunk })
  1019. })
  1020. // Deliver one signal to the entire gate tree: the negative pid targets the
  1021. // POSIX process group the detached child leads; Windows has no groups, so
  1022. // taskkill walks the tree rooted at the child and force-terminates (a
  1023. // taskkill without `/F` does not terminate console processes, which is
  1024. // what gate commands are). Outcomes are deliberately unchecked because
  1025. // delivery races tree exit, and a missing taskkill binary is as tolerable
  1026. // as ESRCH. Mirrors the subprocess package's teardown contract
  1027. // (packages/subprocess/subprocess-local/src/spawn.ts).
  1028. const treeKill = (signalToSend: 'SIGTERM' | 'SIGKILL') => {
  1029. const pid = child.pid
  1030. if (pid === undefined) return
  1031. if (process.platform === 'win32') {
  1032. for (const args of taskkillArgs(pid, descendants)) {
  1033. spawnSync('taskkill', args, { stdio: 'ignore' })
  1034. }
  1035. return
  1036. }
  1037. try {
  1038. process.kill(-pid, signalToSend)
  1039. } catch {
  1040. // The group is gone; the direct child may still be alive alone.
  1041. child.kill(signalToSend)
  1042. }
  1043. // The captured list stays valid after the group kill reparents the
  1044. // detached descendants of a nested run-gates (the `check:node-compat`
  1045. // and `check:ci:lint:contracts-ready` gates in ci-consumers): pids do
  1046. // not change on reparenting, so the escalation reaches leaves that
  1047. // ignored SIGTERM without re-enumerating.
  1048. for (const descendantPid of descendants) {
  1049. try {
  1050. process.kill(descendantPid, signalToSend)
  1051. } catch {
  1052. // The descendant exited between the enumeration and the signal.
  1053. }
  1054. }
  1055. }
  1056. let escalation: ReturnType<typeof setTimeout> | undefined
  1057. let terminatedAt = 0
  1058. // Captured once at terminate and re-signalled on escalation: the group
  1059. // kill reaps the direct child, after which its detached descendants are
  1060. // reparented and unreachable by parent id, so the escalation cannot
  1061. // re-enumerate them.
  1062. let descendants: number[] = []
  1063. let pipeDrain: ReturnType<typeof setTimeout> | undefined
  1064. const terminate = () => {
  1065. aborted = true
  1066. const pid = child.pid
  1067. // Merge while the child is still alive: re-enumerating alone would drop
  1068. // a descendant that an exited intermediate reparented out of the parent
  1069. // chain, and replacing the list entirely would lose the sampler's
  1070. // last-known entries when the child already exited. Union preserves both.
  1071. // The sampler runs on every platform (including Windows, where an
  1072. // exited intermediate's table record vanishes and a fresh enumeration
  1073. // cannot cross the gap), so the cache is the source of truth once the
  1074. // child is gone.
  1075. if (pid !== undefined && child.exitCode === null && child.signalCode === null) {
  1076. descendants = [...new Set([...descendants, ...descendantPids(pid)])]
  1077. }
  1078. treeKill('SIGTERM')
  1079. if (escalation === undefined) {
  1080. terminatedAt = Date.now()
  1081. // Force-kill at the deadline regardless of the direct child's exit
  1082. // state: when the wrapper dies but a grandchild ignores SIGTERM and
  1083. // still holds the stdio pipes, `close` has not fired and the tree must
  1084. // still be killed. treeKill swallows an already-absent group.
  1085. escalation = setTimeout(() => { treeKill('SIGKILL') }, 5000)
  1086. }
  1087. if (pipeDrain === undefined) {
  1088. // `close` can stay pending past the direct child's exit when a
  1089. // descendant holds the stdio write ends (escaped process group, or
  1090. // uninterruptible I/O that keeps the SIGKILL pending). Bound the wait
  1091. // past the 5-second SIGKILL grace and force the streams closed so
  1092. // fail-fast settles instead of hanging to the job timeout. Only the
  1093. // abort path arms it: on an ordinary run a gate that outlives its
  1094. // descendants must keep waiting rather than report passed over a live
  1095. // leak. Armed in terminate (not only at `exit`) so the window where
  1096. // the child already exited before the abort is covered too.
  1097. pipeDrain = setTimeout(() => {
  1098. child.stdout.destroy()
  1099. child.stderr.destroy()
  1100. child.stdin.destroy()
  1101. }, 10000)
  1102. }
  1103. }
  1104. if (signal !== undefined) {
  1105. if (signal.aborted) terminate()
  1106. else signal.addEventListener('abort', terminate, { once: true })
  1107. }
  1108. // Refresh the descendant cache while the child runs, so an abort that
  1109. // arrives after the child already exited can still reach a detached
  1110. // descendant the child left behind: once the child is gone, its
  1111. // descendants are reparented (POSIX) or their intermediate's table record
  1112. // is gone (Windows), so a fresh enumeration cannot cross the gap. The
  1113. // cache is primed at spawn and refreshed every 5 seconds, so a descendant
  1114. // is captured once it appears in any enumeration whose parent chain is
  1115. // still fully present in the table; the residual window is a descendant
  1116. // that never appears in such a snapshot — created after one enumeration
  1117. // and orphaned before the next. Enumeration is asynchronous (a slow
  1118. // WMI/CIM call is bounded by its own 10-second timeout), so a gate's
  1119. // output draining and exit handling are never blocked while the sampler
  1120. // reads the process table. Fail-fast runs only; ordinary runs never
  1121. // abort.
  1122. let descendantSampler: ReturnType<typeof setInterval> | undefined
  1123. if (signal !== undefined) {
  1124. let enumerationInFlight: { cancel: () => void } | undefined
  1125. const refreshDescendants = () => {
  1126. const pid = child.pid
  1127. if (pid === undefined || child.exitCode !== null || child.signalCode !== null) return
  1128. if (enumerationInFlight !== undefined) return
  1129. const handle = descendantPidsAsync(pid, process.platform)
  1130. enumerationInFlight = handle
  1131. void handle.promise.then((fresh) => {
  1132. if (enumerationInFlight === handle) enumerationInFlight = undefined
  1133. // Merge regardless of the child's exit state: the enumeration
  1134. // started while the child was alive, so its snapshot is the last
  1135. // reliable view of the tree. The child may exit (its intermediate
  1136. // gone, its table record vanished) before the promise settles while
  1137. // a grandchild still holds the stdio write ends and keeps `close`
  1138. // pending — exactly when terminate needs this list.
  1139. // Merge instead of replacing, like terminate: an intermediate that
  1140. // exited since the last tick reparented its detached descendants
  1141. // out of the parent chain, so a fresh enumeration alone would drop
  1142. // them. Filter the cache to the still-executing so a long gate
  1143. // does not accumulate stale pids; while sampler ticks still run the
  1144. // live filter also keeps the escalation from signalling a reused
  1145. // pid, but once ticks stop (child exited) the cache can go stale,
  1146. // and a pid reused after that is the accepted sampling window.
  1147. descendants = [...new Set([...descendants.filter(processAlive), ...fresh])]
  1148. })
  1149. }
  1150. const cancelInFlightEnumeration = () => {
  1151. if (enumerationInFlight !== undefined) enumerationInFlight.cancel()
  1152. enumerationInFlight = undefined
  1153. }
  1154. refreshDescendants()
  1155. descendantSampler = setInterval(refreshDescendants, 5000)
  1156. // A gate that settles while an enumeration is still running must not
  1157. // leave the PowerShell subprocess holding stdio handles until its own
  1158. // timeout: stop it as soon as the child's outcome is known.
  1159. child.once('close', cancelInFlightEnumeration)
  1160. child.once('error', cancelInFlightEnumeration)
  1161. }
  1162. child.on('error', (error) => {
  1163. if (escalation !== undefined) clearTimeout(escalation)
  1164. if (pipeDrain !== undefined) clearTimeout(pipeDrain)
  1165. if (descendantSampler !== undefined) clearInterval(descendantSampler)
  1166. if (signal !== undefined) signal.removeEventListener('abort', terminate)
  1167. spawnError = `failed to start command: ${error.message}`
  1168. resolveExit({ exitCode: null, signalCode: null })
  1169. })
  1170. child.on('close', (exitCode, signalCode) => {
  1171. if (pipeDrain !== undefined) clearTimeout(pipeDrain)
  1172. if (descendantSampler !== undefined) clearInterval(descendantSampler)
  1173. if (signal !== undefined) signal.removeEventListener('abort', terminate)
  1174. if (escalation !== undefined && process.platform !== 'win32') {
  1175. // `close` only means the direct child's stdio closed; a grandchild
  1176. // that ignored SIGTERM and redirected its stdio can outlive it. Do
  1177. // not settle until the process group and the captured descendants are
  1178. // confirmed gone — the deadline SIGKILL covers members still alive at
  1179. // the grace end — so runGate returns only once the tree is quiescent.
  1180. const confirmGroupGone = () => {
  1181. if (!groupAlive(child.pid) && descendants.every(descendantPid => !processAlive(descendantPid))) {
  1182. clearTimeout(escalation)
  1183. resolveExit({ exitCode, signalCode })
  1184. return
  1185. }
  1186. if (Date.now() - terminatedAt < 8000) {
  1187. setTimeout(confirmGroupGone, 50)
  1188. return
  1189. }
  1190. // The grace ended with members still alive (e.g. uninterruptible
  1191. // I/O that even SIGKILL cannot cut). Fail loud instead of reporting
  1192. // a quiescent tree: the gate is recorded failed either way.
  1193. console.error(`run-gates: gate tree not quiescent after 8s (${gate.label}).`)
  1194. clearTimeout(escalation)
  1195. resolveExit({ exitCode, signalCode })
  1196. }
  1197. confirmGroupGone()
  1198. return
  1199. }
  1200. if (escalation !== undefined) clearTimeout(escalation)
  1201. resolveExit({ exitCode, signalCode })
  1202. })
  1203. child.stdin.end()
  1204. })
  1205. const { exitCode, signalCode } = outcome
  1206. const status: GateResultStatus = exitCode === 0 && signalCode === null && spawnError === undefined ? 'passed' : 'failed'
  1207. const result: GateResult = {
  1208. gate,
  1209. status,
  1210. durationMs: performance.now() - started,
  1211. output,
  1212. exitCode,
  1213. signalCode,
  1214. }
  1215. result.aborted = aborted
  1216. if (spawnError !== undefined) result.error = spawnError
  1217. return result
  1218. }
  1219. /**
  1220. * Parse the state, parent, and process-group fields from a `/proc/<pid>/stat`
  1221. * line. The comm field may contain spaces and parentheses, so the state starts
  1222. * after the last closing parenthesis.
  1223. * @param stat - one `/proc/<pid>/stat` line.
  1224. * @returns state, parent pid, and process-group pid; undefined when truncated.
  1225. */
  1226. function procStatFields(stat: string): { state: string; ppid: number; pgrp: number } | undefined {
  1227. const fields = stat.slice(stat.lastIndexOf(')') + 2).split(' ')
  1228. const state = fields[0]
  1229. const ppid = fields[1]
  1230. const pgrp = fields[2]
  1231. if (state === undefined || ppid === undefined || pgrp === undefined) return undefined
  1232. return { state, ppid: Number(ppid), pgrp: Number(pgrp) }
  1233. }
  1234. /**
  1235. * Whether one process is still executing. Zombies (state `Z`) do not count:
  1236. * they are dead records awaiting reaping, and kill(pid, 0) would report them
  1237. * as alive. Linux reads /proc/<pid>/stat to distinguish; other platforms fall
  1238. * back to the signal probe.
  1239. * @param pid - the process to probe.
  1240. */
  1241. function processAlive(pid: number): boolean {
  1242. if (process.platform === 'linux') {
  1243. try {
  1244. const parsed = procStatFields(readFileSync(`/proc/${pid}/stat`, 'utf8'))
  1245. return parsed !== undefined && parsed.state !== 'Z'
  1246. } catch {
  1247. return false
  1248. }
  1249. }
  1250. try {
  1251. process.kill(pid, 0)
  1252. return true
  1253. } catch {
  1254. return false
  1255. }
  1256. }
  1257. /**
  1258. * Whether any member of the child's POSIX process group is still executing.
  1259. * Zombie entries (state `Z`) do not count: they are dead records awaiting
  1260. * reaping, and the kill(-pid, 0) group probe would report them as alive.
  1261. * Linux enumerates /proc to distinguish after a fast-path group probe; other
  1262. * POSIX platforms fall back to the probe alone.
  1263. * @param pid - the group leader's pid; undefined or non-positive means the
  1264. * spawn failed and nothing is alive.
  1265. */
  1266. function groupAlive(pid: number | undefined): boolean {
  1267. if (pid === undefined || pid <= 0) return false
  1268. if (process.platform === 'linux') {
  1269. try {
  1270. process.kill(-pid, 0)
  1271. } catch {
  1272. // ESRCH: the group has no entries at all.
  1273. return false
  1274. }
  1275. try {
  1276. for (const entry of readdirSync('/proc')) {
  1277. if (!/^\d+$/.test(entry)) continue
  1278. try {
  1279. const parsed = procStatFields(readFileSync(`/proc/${entry}/stat`, 'utf8'))
  1280. if (parsed !== undefined && parsed.pgrp === pid && parsed.state !== 'Z') return true
  1281. } catch {
  1282. // The process exited mid-scan; it is not a live member.
  1283. }
  1284. }
  1285. return false
  1286. } catch {
  1287. return false
  1288. }
  1289. }
  1290. try {
  1291. process.kill(-pid, 0)
  1292. return true
  1293. } catch {
  1294. return false
  1295. }
  1296. }
  1297. /**
  1298. * The pids of every transitive descendant of `root`, read from the live
  1299. * process table. Linux walks /proc/<pid>/stat parent fields; other platforms
  1300. * parse `ps` (POSIX) or the CIM process table (Windows) output. This is one
  1301. * snapshot, not the full tree-ownership mechanism: terminate and the sampler
  1302. * rely on the 5-second cache to cross an intermediate that exited between
  1303. * ticks (reparented on POSIX, table record gone on Windows), so a single
  1304. * enumeration reaches only the descendants whose parent chain is still fully
  1305. * present in the table.
  1306. * @param root - the pid whose descendants are wanted.
  1307. * @returns descendant pids in breadth-first order; empty on enumeration failure.
  1308. */
  1309. function descendantPids(root: number): number[] {
  1310. if (root <= 0) return []
  1311. if (process.platform === 'linux') {
  1312. const rows: Array<[number, number]> = []
  1313. try {
  1314. for (const entry of readdirSync('/proc')) {
  1315. if (!/^\d+$/.test(entry)) continue
  1316. try {
  1317. const parsed = procStatFields(readFileSync(`/proc/${entry}/stat`, 'utf8'))
  1318. if (parsed !== undefined) rows.push([Number(entry), parsed.ppid])
  1319. } catch {
  1320. // The process exited mid-scan; skip it.
  1321. }
  1322. }
  1323. } catch {
  1324. return []
  1325. }
  1326. return collectDescendants(root, rows)
  1327. }
  1328. let ps: { error?: Error; stdout: string }
  1329. if (process.platform === 'win32') {
  1330. // taskkill /T covers the tree only while the root is alive; once the
  1331. // direct child exits (a descendant still holding the stdio write ends
  1332. // keeps `close` pending), abort must reach the survivors from a fresh
  1333. // enumeration. Windows keeps the exited parent's pid in its descendants'
  1334. // parent column, so this walk still finds the whole tree. A hung
  1335. // PowerShell (WMI/CIM service trouble) must not stall the abort path
  1336. // indefinitely, so the enumeration is bounded.
  1337. ps = spawnSync('powershell', processTableArgs('win32'), { encoding: 'utf8', timeout: 10000 })
  1338. } else {
  1339. ps = spawnSync('ps', processTableArgs('posix'), { encoding: 'utf8' })
  1340. }
  1341. if (ps.error !== undefined) return []
  1342. return collectDescendants(root, parsePidPpidLines(ps.stdout))
  1343. }
  1344. /**
  1345. * The process-table enumeration command for one platform. Windows queries the
  1346. * CIM provider through PowerShell (each line `pid ppid`); other platforms use
  1347. * `ps -axo pid=,ppid=`.
  1348. * @param platform - the target platform.
  1349. * @returns the command arguments to enumerate every live process's pid/ppid.
  1350. */
  1351. function processTableArgs(platform: 'win32' | 'posix'): string[] {
  1352. if (platform === 'win32') {
  1353. return ['-NoProfile', '-NonInteractive', '-Command', 'Get-CimInstance Win32_Process | ForEach-Object { "$($_.ProcessId) $($_.ParentProcessId)" }']
  1354. }
  1355. return ['-axo', 'pid=,ppid=']
  1356. }
  1357. /**
  1358. * Asynchronous descendant enumeration, so a slow WMI/CIM call (bounded by a
  1359. * 10-second timeout) cannot block the event loop: the sampler runs it while
  1360. * the gate's output streams and exit handling must keep flowing. Returns the
  1361. * same descendant list as {@link descendantPids}; used by the fail-fast
  1362. * sampler only, never on the abort path (which needs the synchronous walk to
  1363. * capture the tree before any member exits).
  1364. * @param root - the pid whose descendants are wanted.
  1365. * @param platform - the platform whose table the enumeration reads.
  1366. * @returns a promise of descendant pids in breadth-first order; empty on
  1367. * enumeration failure.
  1368. */
  1369. function descendantPidsAsync(root: number, platform: NodeJS.Platform): { promise: Promise<number[]>; cancel: () => void } {
  1370. if (root <= 0 || platform === 'linux') {
  1371. // The /proc walk is synchronous inside the async wrapper so the sampler
  1372. // keeps the same contract on every platform; /proc reads are fast and
  1373. // need no subprocess, and a completed enumeration needs no cancellation.
  1374. return { promise: Promise.resolve(descendantPids(root)), cancel: () => {} }
  1375. }
  1376. const [command, args] = platform === 'win32'
  1377. ? ['powershell', processTableArgs('win32')]
  1378. : ['ps', processTableArgs('posix')]
  1379. const child = spawn(command, args, {
  1380. stdio: ['ignore', 'pipe', 'ignore'],
  1381. timeout: platform === 'win32' ? 10000 : undefined,
  1382. })
  1383. child.stdout.setEncoding('utf8')
  1384. let stdout = ''
  1385. let settled = false
  1386. let settle!: (value: number[]) => void
  1387. const promise = new Promise<number[]>((resolve) => { settle = resolve })
  1388. const finish = (value: number[]) => {
  1389. if (settled) return
  1390. settled = true
  1391. // The enumeration completed (or was cancelled): stop the subprocess so
  1392. // the gate does not wait on its stdio handles.
  1393. child.kill('SIGTERM')
  1394. settle(value)
  1395. }
  1396. child.stdout.on('data', (chunk: string) => { stdout += chunk })
  1397. child.on('error', () => { finish([]) })
  1398. child.on('close', () => { finish(collectDescendants(root, parsePidPpidLines(stdout))) })
  1399. return {
  1400. promise,
  1401. cancel: () => { finish([]) },
  1402. }
  1403. }
  1404. /** Parse `pid ppid` rows from a process-table dump. Both the POSIX `ps -axo
  1405. * pid=,ppid=` output and the Windows PowerShell `Get-CimInstance Win32_Process`
  1406. * projection emit one `pid ppid` pair per line.
  1407. * @param output - the raw dump text.
  1408. * @returns the parsed pid/ppid rows in line order; blank and malformed lines
  1409. * are dropped.
  1410. */
  1411. export function parsePidPpidLines(output: string): Array<[number, number]> {
  1412. const rows: Array<[number, number]> = []
  1413. for (const line of output.split('\n')) {
  1414. const match = line.trim().match(/^(\d+)\s+(\d+)$/)
  1415. if (match !== null) rows.push([Number(match[1]), Number(match[2])])
  1416. }
  1417. return rows
  1418. }
  1419. /**
  1420. * The taskkill invocations that terminate one Windows gate tree. The direct
  1421. * child leads, because a live `taskkill /T` walks its whole subtree in one
  1422. * call; each captured descendant follows individually, because when the root
  1423. * already exited (a descendant holding the stdio write ends keeps `close`
  1424. * pending) `taskkill /T` rooted at the dead pid finds nothing — Windows never
  1425. * reparents, so the ppid chain captured at terminate still reaches the whole
  1426. * tree, and `/T` lets a surviving intermediate carry its own subtree. A pid
  1427. * that exited between capture and termination is as tolerable as ESRCH on
  1428. * POSIX: taskkill reports a nonzero status that is deliberately unchecked.
  1429. * @param rootPid - the direct child's pid.
  1430. * @param descendants - the captured descendant pids.
  1431. * @returns one `taskkill` argument list per pid, in termination order.
  1432. */
  1433. export function taskkillArgs(rootPid: number, descendants: number[]): string[][] {
  1434. return [rootPid, ...descendants].map(pid => ['/PID', String(pid), '/T', '/F'])
  1435. }
  1436. /** Breadth-first walk of the pid/ppid rows starting at `root`. */
  1437. function collectDescendants(root: number, rows: Array<[number, number]>): number[] {
  1438. const byParent = new Map<number, number[]>()
  1439. for (const [pid, ppid] of rows) {
  1440. const children = byParent.get(ppid) ?? []
  1441. children.push(pid)
  1442. byParent.set(ppid, children)
  1443. }
  1444. const result: number[] = []
  1445. const queue = byParent.get(root) ?? []
  1446. for (let index = 0; index < queue.length; index += 1) {
  1447. const pid = queue[index]
  1448. if (pid === undefined) continue
  1449. result.push(pid)
  1450. queue.push(...(byParent.get(pid) ?? []))
  1451. }
  1452. return result
  1453. }
  1454. /**
  1455. * Format every independently observed failure fact for the aggregate summary.
  1456. * @param result - unsuccessful gate result.
  1457. * @returns error, exit, and signal facts without allowing one to hide another.
  1458. */
  1459. export function formatGateResultReason(result: GateResult): string {
  1460. const facts: string[] = []
  1461. if (result.error !== undefined) facts.push(result.error)
  1462. if (result.exitCode !== null) facts.push(`exit ${result.exitCode}`)
  1463. if (result.signalCode !== null) facts.push(`signal ${result.signalCode}`)
  1464. return facts.length === 0 ? 'no exit code or signal' : facts.join(', ')
  1465. }
  1466. function printResult(result: GateResult): void {
  1467. const verbose = process.env.DSH_GATE_VERBOSE === '1'
  1468. const seconds = (result.durationMs / 1000).toFixed(2)
  1469. if (result.status === 'passed' && !verbose) {
  1470. console.log(`run-gates: PASS ${result.gate.label} (${seconds}s)`)
  1471. return
  1472. }
  1473. const heading = `${result.status.toUpperCase()} ${result.gate.label} (${seconds}s)`
  1474. const writeHeading = result.status === 'passed' ? console.log : console.error
  1475. writeHeading(`\n== ${heading} ==`)
  1476. if (result.status !== 'passed') {
  1477. console.error(`command: ${result.gate.displayCommand}`)
  1478. console.error(`outcome: ${formatGateResultReason(result)}`)
  1479. }
  1480. if (result.gate.streamOutput !== true) printOutput(result.output)
  1481. }
  1482. function printSummary(results: GateResult[], durationMs: number): void {
  1483. const passed = results.filter(result => result.status === 'passed').length
  1484. const failed = results.filter(result => result.status === 'failed').length
  1485. const skipped = results.filter(result => result.status === 'skipped').length
  1486. const seconds = (durationMs / 1000).toFixed(2)
  1487. console.log(`\nrun-gates: ${passed} passed, ${failed} failed, ${skipped} skipped in ${seconds}s.`)
  1488. const unsuccessful = results.filter(result => result.status === 'failed' || result.status === 'skipped')
  1489. if (unsuccessful.length === 0) return
  1490. console.error('run-gates: unsuccessful gates:')
  1491. for (const result of unsuccessful) {
  1492. const duration = (result.durationMs / 1000).toFixed(2)
  1493. const reason = formatGateResultReason(result)
  1494. const disposition = result.gate.allowFailure === true ? 'NON-BLOCKING ' : ''
  1495. console.error(` - ${disposition}${result.status.toUpperCase()} ${result.gate.label} (${duration}s, ${reason})`)
  1496. console.error(` ${result.gate.displayCommand}`)
  1497. }
  1498. }
  1499. function printOutput(output: GateOutputChunk[]): void {
  1500. for (const chunk of output) {
  1501. if (chunk.stream === 'stdout') process.stdout.write(chunk.text)
  1502. else process.stderr.write(chunk.text)
  1503. }
  1504. }