mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
964c8c84c1
* refactor: consolidate coercion ownership Centralize four canonical coercion helpers, migrate exact core and plugin duplicates through narrow Plugin SDK facades, and enforce declaration and plugin-normalization ownership boundaries. The sweep adds eight focused SDK exports while deleting more production and tooling code than it adds. User-visible behavior is unchanged except for safer equivalent object and UI parsing at existing boundaries. * fix: guard integer option ownership Register resolveIntegerOption with the canonical function owner and extend the declaration-guard fixture so future local duplicates fail validation. * fix: keep integer helpers on numeric facade Remove the unshipped duplicate string-coerce exports and route every affected plugin consumer through the existing number-runtime contract. * fix: point numeric coercion to number runtime Make boundary and declaration diagnostics recommend the canonical numeric facade, with failing-before coverage for both guidance paths.
639 lines
22 KiB
TypeScript
639 lines
22 KiB
TypeScript
#!/usr/bin/env node
|
|
// Dispatches full release validation against a temporary SHA-pinned branch.
|
|
import {
|
|
execFileSync,
|
|
spawnSync,
|
|
type ExecFileSyncOptionsWithStringEncoding,
|
|
} from "node:child_process";
|
|
import { existsSync, mkdtempSync, rmSync } from "node:fs";
|
|
import { tmpdir } from "node:os";
|
|
import { join } from "node:path";
|
|
import { pathToFileURL } from "node:url";
|
|
import { parse as parseYaml } from "yaml";
|
|
import { isRecord as isJsonRecord } from "../packages/normalization-core/src/record-coerce.ts";
|
|
import { execGhRead } from "./lib/plain-gh.mjs";
|
|
|
|
const WORKFLOW = "full-release-validation.yml";
|
|
const TRUSTED_WORKFLOW_PATH = `.github/workflows/${WORKFLOW}`;
|
|
const RELEASE_EVIDENCE_VERIFIER_PATHS = [
|
|
"scripts/release-ci-summary.mjs",
|
|
".agents/skills/release-openclaw-ci/scripts/release-ci-summary.mjs",
|
|
];
|
|
const GH_READ_TIMEOUT_MS = 60_000;
|
|
export const FULL_RELEASE_WAIT_TIMEOUT_MINUTES = 720;
|
|
export const FULL_RELEASE_WAIT_POLL_INTERVAL_MS = 45_000;
|
|
const GH_READ_OPTIONS = {
|
|
encoding: "utf8",
|
|
killSignal: "SIGKILL",
|
|
stdio: ["ignore", "pipe", "inherit"],
|
|
timeout: GH_READ_TIMEOUT_MS,
|
|
} satisfies ExecFileSyncOptionsWithStringEncoding;
|
|
const RELEASE_BRANCH_PATTERN =
|
|
/^(?:release\/[0-9]{4}\.[0-9]+\.[0-9]+|extended-stable\/[0-9]{4}\.[0-9]+\.33)$/u;
|
|
const RELEASE_TAG_PATTERN = /^v[0-9]{4}\.[0-9]+\.[0-9]+(?:-(?:alpha|beta)\.[0-9]+)?$/u;
|
|
const DEFAULT_INPUTS = {
|
|
provider: "openai",
|
|
mode: "both",
|
|
rerun_group: "all",
|
|
reuse_evidence: "true",
|
|
fail_fast: "false",
|
|
};
|
|
|
|
type ReleaseInputs = Record<string, string> &
|
|
typeof DEFAULT_INPUTS &
|
|
Partial<Record<"release_profile" | "allow_unreleased_changelog", string>>;
|
|
type CommandOptions = {
|
|
dryRun?: boolean;
|
|
stdio?: "inherit" | ["ignore", "pipe" | "ignore", "inherit" | "ignore"];
|
|
};
|
|
type TemporaryRefParams = {
|
|
keepBranch: boolean;
|
|
dryRun: boolean;
|
|
parentConclusion: string;
|
|
evidenceVerified: boolean;
|
|
};
|
|
|
|
function stringValue(value: unknown, fallback = ""): string {
|
|
return typeof value === "string" ? value : fallback;
|
|
}
|
|
|
|
function displayValue(value: unknown): string {
|
|
if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") {
|
|
return String(value);
|
|
}
|
|
return value === null ? "null" : (JSON.stringify(value) ?? "<undefined>");
|
|
}
|
|
|
|
function usage() {
|
|
console.error(`Usage: node scripts/full-release-validation-at-sha.mjs [--sha <target-sha>] [--target-ref <canonical-release-branch-or-tag>] [--workflow-sha <trusted-main-ref>] [--keep-branch] [--dry-run] [-- -f key=value ...]
|
|
|
|
Creates temporary remote branches pinned to the exact Tooling SHA and Validation SHA,
|
|
dispatches Full Release Validation with the Validation SHA branch as its ref input
|
|
and expected_sha as its immutable identity,
|
|
watches the parent run, verifies all child workflow head SHAs match the trusted
|
|
workflow lineage through the release evidence manifest, then deletes both
|
|
temporary branches by default. --keep-branch retains both branches. Exact-target and changelog-only Release SHA
|
|
evidence reuse stay enabled; pass -f reuse_evidence=false to force a fresh
|
|
run. Child workflows collect independent failures by default; pass
|
|
-f fail_fast=true to cancel each child after its first failed job. The release
|
|
profile defaults to beta for alpha/beta package versions and stable otherwise;
|
|
pass -f release_profile=full for the broad advisory sweep.`);
|
|
}
|
|
|
|
function run(command: string, args: string[], options: CommandOptions = {}) {
|
|
if (options.dryRun) {
|
|
console.log(["+", command, ...args].join(" "));
|
|
return "";
|
|
}
|
|
const output = execFileSync(command, args, {
|
|
encoding: "utf8",
|
|
stdio: options.stdio ?? ["ignore", "pipe", "inherit"],
|
|
});
|
|
return typeof output === "string" ? output.trim() : "";
|
|
}
|
|
|
|
function runStatus(command: string, args: string[], options: CommandOptions = {}) {
|
|
if (options.dryRun) {
|
|
console.log(["+", command, ...args].join(" "));
|
|
return { status: 0, stdout: "" };
|
|
}
|
|
return spawnSync(command, args, {
|
|
encoding: "utf8",
|
|
stdio: options.stdio ?? ["ignore", "pipe", "inherit"],
|
|
});
|
|
}
|
|
|
|
function readOptionValue(argv: string[], index: number, optionName: string): string {
|
|
const value = argv[index + 1];
|
|
if (value === undefined || value === "" || value.startsWith("-")) {
|
|
throw new Error(`${optionName} requires a value`);
|
|
}
|
|
return value;
|
|
}
|
|
|
|
export function parseArgs(argv: string[]) {
|
|
const inputs: ReleaseInputs = { ...DEFAULT_INPUTS };
|
|
const args = {
|
|
sha: "",
|
|
targetRef: "",
|
|
workflowSha: "",
|
|
keepBranch: false,
|
|
dryRun: false,
|
|
inputs,
|
|
};
|
|
|
|
for (let i = 0; i < argv.length; i += 1) {
|
|
const arg = argv[i]!;
|
|
if (arg === "--help" || arg === "-h") {
|
|
usage();
|
|
process.exit(0);
|
|
}
|
|
if (arg === "--sha") {
|
|
args.sha = readOptionValue(argv, i, arg);
|
|
i += 1;
|
|
continue;
|
|
}
|
|
if (arg === "--workflow-sha") {
|
|
args.workflowSha = readOptionValue(argv, i, arg);
|
|
i += 1;
|
|
continue;
|
|
}
|
|
if (arg === "--target-ref") {
|
|
args.targetRef = readOptionValue(argv, i, arg);
|
|
i += 1;
|
|
continue;
|
|
}
|
|
if (arg === "--keep-branch") {
|
|
args.keepBranch = true;
|
|
continue;
|
|
}
|
|
if (arg === "--dry-run") {
|
|
args.dryRun = true;
|
|
continue;
|
|
}
|
|
if (arg === "--") {
|
|
const extras = argv.slice(i + 1);
|
|
for (let extraIndex = 0; extraIndex < extras.length; extraIndex += 1) {
|
|
const extra = extras[extraIndex]!;
|
|
let assignment;
|
|
if (extra === "-f") {
|
|
assignment = readOptionValue(extras, extraIndex, extra);
|
|
extraIndex += 1;
|
|
} else {
|
|
assignment = extra.startsWith("-f") ? extra.slice(2).trim() : extra;
|
|
}
|
|
const [key, ...valueParts] = assignment.split("=");
|
|
if (!key || valueParts.length === 0) {
|
|
throw new Error(`Unsupported extra argument after --: ${extra}`);
|
|
}
|
|
args.inputs[key] = valueParts.join("=");
|
|
}
|
|
break;
|
|
}
|
|
if (arg === "-f") {
|
|
const assignment = readOptionValue(argv, i, arg);
|
|
i += 1;
|
|
const [key, ...valueParts] = assignment.split("=");
|
|
if (!key || valueParts.length === 0) {
|
|
throw new Error(`Invalid -f assignment: ${assignment}`);
|
|
}
|
|
args.inputs[key] = valueParts.join("=");
|
|
continue;
|
|
}
|
|
if (arg.startsWith("-f") && arg.includes("=")) {
|
|
const assignment = arg.slice(2).trim();
|
|
const [key, ...valueParts] = assignment.split("=");
|
|
if (!key || valueParts.length === 0) {
|
|
throw new Error(`Invalid -f assignment: ${arg}`);
|
|
}
|
|
args.inputs[key] = valueParts.join("=");
|
|
continue;
|
|
}
|
|
throw new Error(`Unknown argument: ${arg}`);
|
|
}
|
|
|
|
if (!["true", "false"].includes(args.inputs.reuse_evidence)) {
|
|
throw new Error("reuse_evidence must be true or false");
|
|
}
|
|
if (!["true", "false"].includes(args.inputs.fail_fast)) {
|
|
throw new Error("fail_fast must be true or false");
|
|
}
|
|
if (
|
|
Object.hasOwn(args.inputs, "allow_unreleased_changelog") &&
|
|
!["true", "false"].includes(args.inputs.allow_unreleased_changelog ?? "")
|
|
) {
|
|
throw new Error("allow_unreleased_changelog must be true or false");
|
|
}
|
|
if (
|
|
args.inputs.release_profile &&
|
|
!["beta", "stable", "full"].includes(args.inputs.release_profile)
|
|
) {
|
|
throw new Error("release_profile must be beta, stable, or full");
|
|
}
|
|
if (Object.hasOwn(args.inputs, "ref")) {
|
|
throw new Error("SHA-pinned release validation reserves the ref input for --sha");
|
|
}
|
|
if (Object.hasOwn(args.inputs, "expected_sha")) {
|
|
throw new Error("SHA-pinned release validation reserves expected_sha for the resolved --sha");
|
|
}
|
|
if (
|
|
args.targetRef &&
|
|
!RELEASE_BRANCH_PATTERN.test(args.targetRef) &&
|
|
!RELEASE_TAG_PATTERN.test(args.targetRef)
|
|
) {
|
|
throw new Error("--target-ref must be a canonical OpenClaw release branch or tag");
|
|
}
|
|
return args;
|
|
}
|
|
|
|
export function resolveRemoteTargetRefSha(
|
|
targetRef: string,
|
|
executeGit: (args: string[]) => string = (args) => run("git", args),
|
|
) {
|
|
if (RELEASE_BRANCH_PATTERN.test(targetRef)) {
|
|
return (
|
|
executeGit(["ls-remote", "--heads", "origin", `refs/heads/${targetRef}`]).split(/\s+/u)[0] ??
|
|
""
|
|
);
|
|
}
|
|
|
|
const tagRef = `refs/tags/${targetRef}`;
|
|
const peeledSha = executeGit(["ls-remote", "--tags", "origin", `${tagRef}^{}`]).split(/\s+/u)[0];
|
|
if (peeledSha) {
|
|
return peeledSha;
|
|
}
|
|
return executeGit(["ls-remote", "--tags", "origin", tagRef]).split(/\s+/u)[0] ?? "";
|
|
}
|
|
|
|
function verifyTargetRef(targetRef: string, targetSha: string) {
|
|
if (!targetRef) {
|
|
return targetSha;
|
|
}
|
|
const remoteSha = resolveRemoteTargetRefSha(targetRef);
|
|
if (remoteSha !== targetSha) {
|
|
throw new Error(`Target ref ${targetRef} does not resolve to ${targetSha}`);
|
|
}
|
|
return targetRef;
|
|
}
|
|
|
|
function resolveSha(requestedSha: string) {
|
|
const rev = requestedSha || "HEAD";
|
|
return run("git", ["rev-parse", "--verify", `${rev}^{commit}`], { dryRun: false });
|
|
}
|
|
|
|
function fetchTargetRef(targetRef: string) {
|
|
if (!targetRef) {
|
|
return;
|
|
}
|
|
const sourceRef = RELEASE_BRANCH_PATTERN.test(targetRef)
|
|
? `refs/heads/${targetRef}`
|
|
: `refs/tags/${targetRef}`;
|
|
run("git", ["fetch", "--no-tags", "origin", sourceRef], {
|
|
stdio: "inherit",
|
|
});
|
|
}
|
|
|
|
function resolveTargetSha(requestedSha: string, targetRef: string) {
|
|
fetchTargetRef(targetRef);
|
|
const revision = requestedSha || "HEAD";
|
|
const resolved = runStatus("git", ["rev-parse", "--verify", `${revision}^{commit}`], {
|
|
stdio: ["ignore", "pipe", "ignore"],
|
|
});
|
|
const resolvedSha = typeof resolved.stdout === "string" ? resolved.stdout.trim() : "";
|
|
if (resolved.status !== 0 || !resolvedSha) {
|
|
throw new Error(
|
|
targetRef
|
|
? `Target SHA ${revision} is not available locally after fetching ${targetRef}`
|
|
: `Target SHA ${revision} is not available locally; pass --target-ref so it can be fetched by name`,
|
|
);
|
|
}
|
|
return resolvedSha;
|
|
}
|
|
|
|
export function releaseProfileForTarget(
|
|
targetSha: string,
|
|
readPackageJson: (sha: string) => string = (sha) => run("git", ["show", `${sha}:package.json`]),
|
|
): "beta" | "stable" {
|
|
let version: unknown;
|
|
try {
|
|
version = JSON.parse(readPackageJson(targetSha)).version;
|
|
} catch {
|
|
throw new Error(`Could not read package.json from target SHA ${targetSha}`);
|
|
}
|
|
if (typeof version !== "string" || !/^[0-9]{4}\.[0-9]+\.[0-9]+(?:-.+)?$/u.test(version)) {
|
|
throw new Error(`Target SHA ${targetSha} has an invalid package version`);
|
|
}
|
|
return /-(?:alpha|beta)\.[1-9][0-9]*$/u.test(version) ? "beta" : "stable";
|
|
}
|
|
|
|
function resolveTrustedWorkflowSha(requestedSha: string) {
|
|
run("git", ["fetch", "--no-tags", "origin", "refs/heads/main:refs/remotes/origin/main"], {
|
|
stdio: "inherit",
|
|
});
|
|
const workflowSha = resolveSha(requestedSha || "origin/main");
|
|
const ancestry = runStatus("git", [
|
|
"merge-base",
|
|
"--is-ancestor",
|
|
workflowSha,
|
|
"refs/remotes/origin/main",
|
|
]);
|
|
if (ancestry.status !== 0) {
|
|
throw new Error(
|
|
`Workflow SHA ${workflowSha} is not reachable from current origin/main; refusing an untrusted release harness.`,
|
|
);
|
|
}
|
|
return workflowSha;
|
|
}
|
|
|
|
function collectRunId(dispatchOutput: string) {
|
|
const match = dispatchOutput.match(/actions\/runs\/(\d+)/);
|
|
return match?.[1] ?? "";
|
|
}
|
|
|
|
function findLatestRunId(branch: string, sha: string) {
|
|
const json = execGhRead(
|
|
[
|
|
"run",
|
|
"list",
|
|
"--workflow",
|
|
WORKFLOW,
|
|
"--branch",
|
|
branch,
|
|
"--event",
|
|
"workflow_dispatch",
|
|
"--limit",
|
|
"20",
|
|
"--json",
|
|
"databaseId,headSha,createdAt",
|
|
],
|
|
GH_READ_OPTIONS,
|
|
);
|
|
const runs: unknown = JSON.parse(json);
|
|
if (!Array.isArray(runs)) {
|
|
throw new Error("Full Release Validation run list response was not an array");
|
|
}
|
|
const match = runs.find((runItem: unknown) => isJsonRecord(runItem) && runItem.headSha === sha);
|
|
const databaseId = isJsonRecord(match) ? match.databaseId : undefined;
|
|
return typeof databaseId === "string" || typeof databaseId === "number" ? String(databaseId) : "";
|
|
}
|
|
|
|
function readWorkflowRun(parentRunId: string, workflowSha: string) {
|
|
if (!/^[1-9][0-9]*$/u.test(parentRunId)) {
|
|
throw new Error("parent run ID must be a positive decimal");
|
|
}
|
|
const workflowRun: unknown = JSON.parse(
|
|
execGhRead(["api", `repos/openclaw/openclaw/actions/runs/${parentRunId}`], GH_READ_OPTIONS),
|
|
);
|
|
if (!isJsonRecord(workflowRun)) {
|
|
throw new Error(`Full Release Validation run ${parentRunId} returned an invalid response`);
|
|
}
|
|
if (workflowRun.head_sha !== workflowSha) {
|
|
throw new Error(
|
|
`Full Release Validation run ${parentRunId} head ${displayValue(workflowRun.head_sha)} does not match trusted workflow SHA ${workflowSha}`,
|
|
);
|
|
}
|
|
return workflowRun;
|
|
}
|
|
|
|
function waitForWorkflowRun(parentRunId: string, workflowSha: string) {
|
|
let lastSummary = "";
|
|
let consecutiveErrors = 0;
|
|
const deadline = Date.now() + FULL_RELEASE_WAIT_TIMEOUT_MINUTES * 60_000;
|
|
while (Date.now() < deadline) {
|
|
let suite: Record<string, unknown> | undefined;
|
|
try {
|
|
suite = readWorkflowRun(parentRunId, workflowSha);
|
|
consecutiveErrors = 0;
|
|
} catch (error) {
|
|
consecutiveErrors += 1;
|
|
if (consecutiveErrors >= 3) {
|
|
throw error;
|
|
}
|
|
const message = error instanceof Error ? error.message : String(error);
|
|
console.warn(`Parent run status query failed; retrying: ${message}`);
|
|
}
|
|
|
|
const status = stringValue(suite?.status, "pending").toLowerCase();
|
|
const conclusion = stringValue(suite?.conclusion, "pending").toLowerCase();
|
|
const summary = `${status}/${conclusion}`;
|
|
if (summary !== lastSummary) {
|
|
console.log(`Parent run status: ${summary}`);
|
|
lastSummary = summary;
|
|
}
|
|
if (suite?.status === "completed") {
|
|
if (suite.conclusion === "success") {
|
|
return suite;
|
|
}
|
|
throw new Error(
|
|
`Full Release Validation concluded ${stringValue(suite.conclusion, "unknown").toLowerCase()}: https://github.com/openclaw/openclaw/actions/runs/${parentRunId}`,
|
|
);
|
|
}
|
|
const remainingMs = deadline - Date.now();
|
|
if (remainingMs <= 0) {
|
|
break;
|
|
}
|
|
Atomics.wait(
|
|
new Int32Array(new SharedArrayBuffer(4)),
|
|
0,
|
|
0,
|
|
Math.min(FULL_RELEASE_WAIT_POLL_INTERVAL_MS, remainingMs),
|
|
);
|
|
}
|
|
throw new Error(
|
|
`Timed out after ${FULL_RELEASE_WAIT_TIMEOUT_MINUTES} minutes waiting for Full Release Validation: https://github.com/openclaw/openclaw/actions/runs/${parentRunId}`,
|
|
);
|
|
}
|
|
|
|
export function releaseEvidenceVerificationArgs(parentRunId: unknown) {
|
|
if (!/^[1-9][0-9]*$/u.test(String(parentRunId))) {
|
|
throw new Error("parent run ID must be a positive decimal");
|
|
}
|
|
return ["--validate-run", String(parentRunId), "--trusted-workflow-ref", "main", "--json"];
|
|
}
|
|
|
|
export function shouldDeleteTemporaryWorkflowRef(params: TemporaryRefParams) {
|
|
return (
|
|
!params.keepBranch &&
|
|
(params.dryRun || (params.parentConclusion === "success" && params.evidenceVerified))
|
|
);
|
|
}
|
|
|
|
export function assertTrustedWorkflowHarness(
|
|
workflowSha: string,
|
|
pathExists: (relativePath: string) => boolean = (relativePath) =>
|
|
runStatus("git", ["cat-file", "-e", `${workflowSha}:${relativePath}`], {
|
|
stdio: ["ignore", "ignore", "ignore"],
|
|
}).status === 0,
|
|
readPath: (relativePath: string) => string = (relativePath) =>
|
|
run("git", ["show", `${workflowSha}:${relativePath}`]),
|
|
) {
|
|
if (!pathExists(TRUSTED_WORKFLOW_PATH)) {
|
|
throw new Error(
|
|
`trusted workflow SHA ${workflowSha} does not contain ${TRUSTED_WORKFLOW_PATH}`,
|
|
);
|
|
}
|
|
let workflow: unknown;
|
|
try {
|
|
workflow = parseYaml(readPath(TRUSTED_WORKFLOW_PATH));
|
|
} catch (error) {
|
|
throw new Error(
|
|
`Tooling SHA ${workflowSha} contains invalid ${TRUSTED_WORKFLOW_PATH}: ${error instanceof Error ? error.message : String(error)}`,
|
|
{ cause: error },
|
|
);
|
|
}
|
|
if (
|
|
!isJsonRecord(workflow) ||
|
|
!isJsonRecord(workflow.on) ||
|
|
!isJsonRecord(workflow.on.workflow_dispatch) ||
|
|
!isJsonRecord(workflow.on.workflow_dispatch.inputs) ||
|
|
!Object.hasOwn(workflow.on.workflow_dispatch.inputs, "expected_sha")
|
|
) {
|
|
throw new Error(
|
|
`Tooling SHA ${workflowSha} is missing workflow_dispatch input expected_sha in ${TRUSTED_WORKFLOW_PATH}`,
|
|
);
|
|
}
|
|
const verifierPath = RELEASE_EVIDENCE_VERIFIER_PATHS.find((relativePath) =>
|
|
pathExists(relativePath),
|
|
);
|
|
if (!verifierPath) {
|
|
throw new Error(
|
|
`trusted workflow SHA ${workflowSha} does not contain a supported release evidence verifier`,
|
|
);
|
|
}
|
|
return verifierPath;
|
|
}
|
|
|
|
export function releaseEvidenceVerifierPath(worktreeRoot: string) {
|
|
const candidates = RELEASE_EVIDENCE_VERIFIER_PATHS.map((relativePath) =>
|
|
join(worktreeRoot, relativePath),
|
|
);
|
|
const verifier = candidates.find((candidate) => existsSync(candidate));
|
|
if (!verifier) {
|
|
throw new Error("trusted workflow checkout does not contain a release evidence verifier");
|
|
}
|
|
return verifier;
|
|
}
|
|
|
|
function verifyReleaseEvidence(parentRunId: string, workflowSha: string) {
|
|
const verifierWorktree = mkdtempSync(join(tmpdir(), "openclaw-release-verifier-"));
|
|
try {
|
|
run("git", ["worktree", "add", "--detach", verifierWorktree, workflowSha], {
|
|
stdio: ["ignore", "ignore", "inherit"],
|
|
});
|
|
const verifier = releaseEvidenceVerifierPath(verifierWorktree);
|
|
const evidence: unknown = JSON.parse(
|
|
run(process.execPath, [verifier, ...releaseEvidenceVerificationArgs(parentRunId)]),
|
|
);
|
|
if (
|
|
!isJsonRecord(evidence) ||
|
|
evidence.valid !== true ||
|
|
!isJsonRecord(evidence.current) ||
|
|
!isJsonRecord(evidence.root)
|
|
) {
|
|
throw new Error(`Full Release Validation evidence is invalid for run ${parentRunId}.`);
|
|
}
|
|
console.log(
|
|
`ok release evidence current=${displayValue(evidence.current.runId)} root=${displayValue(evidence.root.runId)} reused=${Boolean(evidence.evidenceReuse)}`,
|
|
);
|
|
} finally {
|
|
runStatus("git", ["worktree", "remove", "--force", verifierWorktree], {
|
|
stdio: ["ignore", "ignore", "ignore"],
|
|
});
|
|
rmSync(verifierWorktree, { force: true, recursive: true });
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
const args = parseArgs(process.argv.slice(2));
|
|
const targetSha = resolveTargetSha(args.sha, args.targetRef);
|
|
args.inputs.release_profile ??= releaseProfileForTarget(targetSha);
|
|
args.inputs.allow_unreleased_changelog ??= args.targetRef ? "false" : "true";
|
|
const targetContextRef = verifyTargetRef(args.targetRef, targetSha);
|
|
const workflowSha = resolveTrustedWorkflowSha(args.workflowSha);
|
|
assertTrustedWorkflowHarness(workflowSha);
|
|
const shortSha = workflowSha.slice(0, 12);
|
|
const branch = `release-ci/${shortSha}-${Date.now()}`;
|
|
const remoteBranchRef = `refs/heads/${branch}`;
|
|
const targetBranch = `validation/target-${targetSha.slice(0, 12)}-${Date.now()}`;
|
|
const remoteTargetBranchRef = `refs/heads/${targetBranch}`;
|
|
const dispatchInputs = {
|
|
ref: targetBranch,
|
|
expected_sha: targetSha,
|
|
...(targetContextRef !== targetSha ? { target_context_ref: targetContextRef } : {}),
|
|
...args.inputs,
|
|
};
|
|
|
|
console.log(`Validation SHA: ${targetSha}`);
|
|
console.log(`Tooling SHA: ${workflowSha}`);
|
|
console.log(`Temporary target ref: ${targetBranch}`);
|
|
console.log(`Temporary workflow ref: ${branch}`);
|
|
|
|
let parentRunId: string | undefined;
|
|
let parentConclusion = "";
|
|
let evidenceVerified = false;
|
|
try {
|
|
run("git", ["push", "origin", `${targetSha}:${remoteTargetBranchRef}`], {
|
|
dryRun: args.dryRun,
|
|
stdio: "inherit",
|
|
});
|
|
run("git", ["push", "origin", `${workflowSha}:${remoteBranchRef}`], {
|
|
dryRun: args.dryRun,
|
|
stdio: "inherit",
|
|
});
|
|
|
|
const dispatchArgs = ["workflow", "run", WORKFLOW, "--ref", branch];
|
|
for (const [key, value] of Object.entries(dispatchInputs)) {
|
|
dispatchArgs.push("-f", `${key}=${value}`);
|
|
}
|
|
|
|
const dispatchOutput = run("gh", dispatchArgs, { dryRun: args.dryRun });
|
|
if (dispatchOutput) {
|
|
console.log(dispatchOutput);
|
|
}
|
|
parentRunId = collectRunId(dispatchOutput);
|
|
if (!parentRunId && !args.dryRun) {
|
|
for (let attempt = 0; attempt < 60; attempt += 1) {
|
|
parentRunId = findLatestRunId(branch, workflowSha);
|
|
if (parentRunId) {
|
|
break;
|
|
}
|
|
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, 5000);
|
|
}
|
|
}
|
|
if (!parentRunId) {
|
|
if (args.dryRun) {
|
|
return;
|
|
}
|
|
throw new Error("Could not determine Full Release Validation run id.");
|
|
}
|
|
|
|
console.log(`Parent run: https://github.com/openclaw/openclaw/actions/runs/${parentRunId}`);
|
|
const completedRun = waitForWorkflowRun(parentRunId, workflowSha);
|
|
parentConclusion = stringValue(completedRun.conclusion);
|
|
if (parentConclusion !== "success") {
|
|
throw new Error(
|
|
`Full Release Validation concluded ${parentConclusion.toLowerCase() || "without a conclusion"}: https://github.com/openclaw/openclaw/actions/runs/${parentRunId}`,
|
|
);
|
|
}
|
|
verifyReleaseEvidence(parentRunId, workflowSha);
|
|
evidenceVerified = true;
|
|
} finally {
|
|
if (
|
|
shouldDeleteTemporaryWorkflowRef({
|
|
keepBranch: args.keepBranch,
|
|
dryRun: args.dryRun,
|
|
parentConclusion,
|
|
evidenceVerified,
|
|
})
|
|
) {
|
|
run("git", ["push", "origin", `:${remoteBranchRef}`, `:${remoteTargetBranchRef}`], {
|
|
dryRun: args.dryRun,
|
|
stdio: "inherit",
|
|
});
|
|
} else {
|
|
const keptRefs = `${remoteBranchRef} and ${remoteTargetBranchRef}`;
|
|
console.warn(
|
|
args.keepBranch
|
|
? `Kept ${keptRefs}`
|
|
: `Kept ${keptRefs}: ${
|
|
parentConclusion === "success"
|
|
? "release evidence was not verified"
|
|
: `parent concluded ${parentConclusion || "without a conclusion"}`
|
|
}. Keep it through GitHub reruns or evidence diagnosis; delete it after verified success.`,
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
|
|
try {
|
|
main();
|
|
} catch (error) {
|
|
console.error(
|
|
`[full-release-validation] FAILED: ${error instanceof Error ? error.message : String(error)}`,
|
|
);
|
|
console.error("[full-release-validation] FAILED (exit 1)");
|
|
process.exitCode = 1;
|
|
}
|
|
}
|