ci: remove bun workflow

This commit is contained in:
Peter Steinberger
2026-04-01 21:58:46 +09:00
parent 131f6dac37
commit fc745db76d
5 changed files with 2 additions and 138 deletions

View File

@@ -466,16 +466,6 @@ describe("scripts/test-parallel lane planning", () => {
expect(outputs).not.toContain("run_checks=");
});
it("writes bun outputs in ci-bun mode", () => {
const outputs = runManifestOutputWriter("ci-bun", {
OPENCLAW_CI_DOCS_ONLY: "false",
OPENCLAW_CI_RUN_NODE: "true",
});
expect(outputs).toContain("run_bun_checks=true");
expect(outputs).toContain("bun_checks_matrix=");
expect(outputs).not.toContain("run_install_smoke=");
});
it("passes through vitest --mode values that are not wrapper runtime overrides", () => {
const output = runPlannerPlan(
["--plan", "--mode", "development", "src/infra/outbound/deliver.test.ts"],

View File

@@ -656,10 +656,8 @@ describe("test planner", () => {
expect(manifest.shardCounts.extensionFast).toBeLessThanOrEqual(5);
expect(manifest.shardCounts.windows).toBe(6);
expect(manifest.shardCounts.macosNode).toBe(9);
expect(manifest.shardCounts.bun).toBe(6);
expect(manifest.jobs.checks.matrix.include).toHaveLength(8);
expect(manifest.jobs.checksWindows.matrix.include).toHaveLength(6);
expect(manifest.jobs.bunChecks.matrix.include).toHaveLength(6);
expect(manifest.jobs.macosNode.matrix.include).toHaveLength(9);
expect(manifest.jobs.checksFast.matrix.include).toHaveLength(
manifest.shardCounts.extensionFast + 1,