fix(staging): deploy gate-attested controllers
Staging Backend Quality Gate / validate (pull_request) Successful in 14m1s
Staging Backend Quality Gate / publish (pull_request) Has been skipped

This commit is contained in:
Jesse
2026-08-06 19:18:04 +08:00
parent 784ee36cec
commit 8473146773
8 changed files with 337 additions and 148 deletions
+15 -3
View File
@@ -4,7 +4,8 @@ import { pathToFileURL } from "node:url";
const shaPattern = /^[0-9a-f]{40}$/;
const digestPattern = /^sha256:[0-9a-f]{64}$/;
const expectedKeys = ["git_sha", "api_digest", "web_digest"];
const requiredKeys = ["git_sha", "api_digest", "web_digest"];
const optionalKeys = ["controller_sha256"];
const defaultRegistry = "ghcr.io/jesse-ux";
const acrRepository = "crpi-d1feco6itet73spp.cn-hongkong.personal.cr.aliyuncs.com/copse/jyotisha";
const registryPattern = /^(?:[a-z0-9](?:[a-z0-9.-]*[a-z0-9])?)(?::[1-9][0-9]{0,4})?(?:\/[a-z0-9]+(?:[._-][a-z0-9]+)*)*$/;
@@ -18,7 +19,7 @@ export function parseStagingImageManifest(text, expectedSha, registry = defaultR
}
const lines = text.endsWith("\n") ? text.slice(0, -1).split("\n") : text.split("\n");
if (lines.length !== expectedKeys.length) {
if (lines.length !== requiredKeys.length && lines.length !== requiredKeys.length + 1) {
throw new Error("invalid staging image manifest");
}
@@ -28,11 +29,14 @@ export function parseStagingImageManifest(text, expectedSha, registry = defaultR
if (separator <= 0) throw new Error("invalid staging image manifest");
const key = line.slice(0, separator);
const value = line.slice(separator + 1);
if (!expectedKeys.includes(key) || values.has(key)) {
if (![...requiredKeys, ...optionalKeys].includes(key) || values.has(key)) {
throw new Error("invalid staging image manifest");
}
values.set(key, value);
}
if (!requiredKeys.every((key) => values.has(key))) {
throw new Error("invalid staging image manifest");
}
if (values.get("git_sha") !== expectedSha) {
throw new Error("staging image manifest revision mismatch");
@@ -42,12 +46,17 @@ export function parseStagingImageManifest(text, expectedSha, registry = defaultR
throw new Error("invalid staging image digest");
}
}
const controllerSha256 = values.get("controller_sha256");
if (controllerSha256 !== undefined && !/^[0-9a-f]{64}$/.test(controllerSha256)) {
throw new Error("invalid staging controller digest");
}
const sharedRepository = registry === acrRepository;
return {
gitSha: expectedSha,
apiDigest: values.get("api_digest"),
webDigest: values.get("web_digest"),
...(controllerSha256 === undefined ? {} : { controllerSha256 }),
apiImage: `${sharedRepository ? registry : `${registry}/jyotisha-api`}@${values.get("api_digest")}`,
webImage: `${sharedRepository ? registry : `${registry}/jyotisha-web`}@${values.get("web_digest")}`,
};
@@ -73,6 +82,9 @@ if (invokedPath === import.meta.url) {
`git_sha=${manifest.gitSha}`,
`api_image=${manifest.apiImage}`,
`web_image=${manifest.webImage}`,
...(manifest.controllerSha256 === undefined
? []
: [`controller_sha256=${manifest.controllerSha256}`]),
].join("\n") + "\n",
);
} catch {