ci: start runtime tests without dist

This commit is contained in:
Peter Steinberger
2026-04-22 02:27:03 +01:00
parent e5909f3e5d
commit ffef84dea7
2 changed files with 9 additions and 15 deletions

View File

@@ -90,7 +90,7 @@ const SPLIT_NODE_SHARDS = new Map([
"test/vitest/vitest.logging.config.ts",
"test/vitest/vitest.process.config.ts",
],
requiresDist: true,
requiresDist: false,
},
{
shardName: "core-runtime-media-ui",
@@ -101,7 +101,7 @@ const SPLIT_NODE_SHARDS = new Map([
"test/vitest/vitest.ui.config.ts",
"test/vitest/vitest.wizard.config.ts",
],
requiresDist: true,
requiresDist: false,
},
{
shardName: "core-runtime-shared",
@@ -112,7 +112,7 @@ const SPLIT_NODE_SHARDS = new Map([
"test/vitest/vitest.tasks.config.ts",
"test/vitest/vitest.utils.config.ts",
],
requiresDist: true,
requiresDist: false,
},
],
],
@@ -176,7 +176,7 @@ const SPLIT_NODE_SHARDS = new Map([
],
],
]);
const DIST_DEPENDENT_NODE_SHARD_NAMES = new Set(["core-support-boundary", "core-runtime"]);
const DIST_DEPENDENT_NODE_SHARD_NAMES = new Set(["core-support-boundary"]);
function formatNodeTestShardCheckName(shardName) {
const normalizedShardName = shardName.startsWith("core-unit-")