ci: run release orchestration on github runners

This commit is contained in:
Peter Steinberger
2026-04-29 16:49:11 +01:00
parent 616f24fd49
commit c99d680714
3 changed files with 20 additions and 8 deletions

View File

@@ -302,6 +302,18 @@ describe("scripts/lib/plugin-prerelease-test-plan.mjs", () => {
group: "full-release-validation-${{ inputs.ref }}-${{ inputs.rerun_group }}",
"cancel-in-progress": true,
});
expect(releaseChecksWorkflow.jobs.resolve_target["runs-on"]).toBe("ubuntu-24.04");
expect(releaseChecksWorkflow.jobs.summary["runs-on"]).toBe("ubuntu-24.04");
for (const jobName of [
"resolve_target",
"normal_ci",
"plugin_prerelease",
"release_checks",
"npm_telegram",
"summary",
]) {
expect(fullReleaseWorkflow.jobs[jobName]["runs-on"]).toBe("ubuntu-24.04");
}
});
it("keeps the live-ish availability check redacted", () => {