ci(release): raise build heap for validation gates

This commit is contained in:
Peter Steinberger
2026-05-10 03:03:32 +01:00
parent e3e60ad7c2
commit c8d82e4535
7 changed files with 21 additions and 21 deletions

View File

@@ -656,7 +656,7 @@ describe("package artifact reuse", () => {
for (const step of job.steps ?? []) {
if (step.run === "pnpm build") {
expect(step.env, `${workflowPath}:${jobName}:${step.name}`).toMatchObject({
NODE_OPTIONS: "--max-old-space-size=6144",
NODE_OPTIONS: "--max-old-space-size=8192",
});
}
}

View File

@@ -226,7 +226,7 @@ describe("scripts/lib/plugin-prerelease-test-plan.mjs", () => {
expect(workflow.jobs["checks-node-extensions-shard"]).toBeUndefined();
expect(preflight.outputs).not.toHaveProperty("run_plugin_prerelease_suite");
expect(preflight.outputs).not.toHaveProperty("run_checks_node_extensions");
expect(buildDistStep.env).toEqual({ NODE_OPTIONS: "--max-old-space-size=6144" });
expect(buildDistStep.env).toEqual({ NODE_OPTIONS: "--max-old-space-size=8192" });
expect(staticShard).toEqual({
if: "needs.preflight.outputs.run_plugin_prerelease_static == 'true'",
name: "${{ matrix.check_name }}",