fix: verify dev registry manifests from runner pods

This commit is contained in:
Codex
2026-05-24 07:33:24 +00:00
parent 54e4e1a9d3
commit 81ca5e022b
5 changed files with 249 additions and 19 deletions
+2
View File
@@ -109,6 +109,8 @@ function buildJobSpec({ kind, flags, options, repoRoot, env, now }) {
if (flags.has("--break-stale-lock")) args.push("--break-stale-lock");
const concurrency = optionValue(options, "--concurrency");
if (concurrency) envPatch.HWLAB_DEV_CD_CONCURRENCY = String(positiveInteger(concurrency, 4));
const registryManifestBaseUrl = optionValue(options, "--registry-manifest-base-url");
if (registryManifestBaseUrl) args.push("--registry-manifest-base-url", registryManifestBaseUrl);
}
if (optionValue(options, "--target-ref")) args.push("--target-ref", optionValue(options, "--target-ref"));