refactor: variableize yaml lane node naming

This commit is contained in:
Codex
2026-07-09 10:46:55 +02:00
parent e9457ace4a
commit 37a6b70793
123 changed files with 1572 additions and 1571 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
// SPEC: PJ2026-01060505 Workbench Performance draft-2026-06-17-p0.
// Responsibility: HWLAB node transport/delegation adapters for legacy shared commands.
import type { Config } from "./config";
import { runHwlabG14Command } from "./hwlab-g14";
import { runHwlabLegacyRuntimeCommand } from "./hwlab-legacy-runtime";
export type DelegatedNodeDomain = "control-plane" | "git-mirror";
export async function runDelegatedHwlabNodeCommand(config: Config, domain: DelegatedNodeDomain, args: string[]): Promise<unknown> {
return runHwlabG14Command(config, [domain, ...args]);
return runHwlabLegacyRuntimeCommand(config, [domain, ...args]);
}