Files
openclaw/scripts/ci-run-node-test-shard.d.mts
Peter Steinberger 7bf5c772be improve: reuse Vitest transform cache across CI runs (#109330)
* ci: persist Vitest transform cache

* fix(ci): declare Vitest cache helpers

* fix(ci): serialize Vitest cache snapshots
2026-07-16 14:15:17 -07:00

56 lines
1.3 KiB
TypeScript

export type ShardTargetPlan = {
kind: "target";
name: string;
target: string;
};
export type ShardGroupPlan = {
kind: "group";
name: string;
plan: {
configs: string[];
env?: Record<string, unknown> | null;
includePatterns?: string[] | null;
shard_name?: string;
};
};
export type ShardPlan = ShardTargetPlan | ShardGroupPlan;
export type FsModuleCachePruneResult = {
beforeBytes: number;
afterBytes: number;
removedFiles: number;
};
export function resolveShardPlans(env?: Record<string, string | undefined>): ShardPlan[];
export function buildChildEnv(
entry: ShardPlan,
baseEnv: Record<string, string | undefined>,
scratchDir: string,
index: number,
options?: { serial?: boolean; cacheSlot?: number },
): Record<string, string | undefined>;
export function pruneFsModuleCache(root: string, maxBytes?: number): FsModuleCachePruneResult;
export function resolveShardChildCommand(
args: string[],
nodeExecPath?: string,
): { command: string; args: string[] };
export function runShardPlans(
plans: ShardPlan[],
options?: {
concurrency?: number;
env?: Record<string, string | undefined>;
runChild?: (
args: string[],
childEnv: Record<string, string | undefined>,
label: string,
) => Promise<number>;
scratchDir?: string;
},
): Promise<number>;