mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 22:41:33 +00:00
* fix(memory): avoid cubic MMR similarity rescans * style(memory-core): oxfmt mmr.test.ts * test(memory-core): allow packed CI integration tests * fix(ci): serialize targeted memory-core tests * fix(ci): pin agentic cli worker count --------- Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
24 lines
611 B
TypeScript
24 lines
611 B
TypeScript
export type ChangedNodeTestShard = {
|
|
checkName: string;
|
|
configs: string[];
|
|
planConcurrency?: number;
|
|
requiresDist: boolean;
|
|
runner: string;
|
|
shardName: string;
|
|
targets?: string[];
|
|
};
|
|
|
|
export function createChangedNodeTestShards(
|
|
changedPaths: string[],
|
|
options?: { cwd?: string },
|
|
): ChangedNodeTestShard[] | null;
|
|
|
|
export function hasBuildArtifactAffectingChange(changedPaths: string[]): boolean;
|
|
|
|
export function hasPromptSnapshotAffectingChange(
|
|
changedPaths: string[],
|
|
options?: { cwd?: string },
|
|
): boolean;
|
|
|
|
export function hasQaSmokeAffectingChange(changedPaths: string[]): boolean;
|