Skip to content

Commit 529a3bc

Browse files
committed
fix: stabilize steward checkout ci lanes
1 parent 4285f1c commit 529a3bc

2 files changed

Lines changed: 24 additions & 1 deletion

File tree

packages/core/src/__tests__/service-type-collisions.test.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,29 @@ const serviceTypeValuesByMember = new Map(
5050
);
5151

5252
const duplicateServiceTypeAllowlist = new Map<string, AllowlistEntry>([
53+
[
54+
"capability-router",
55+
{
56+
reason:
57+
"Runtime capability routing keeps local, remote, and E2B implementations in one capability-router discovery slot while the strategy-table migration is in progress.",
58+
classes: new Set([
59+
"packages/core/src/services/runtime-capability-service.ts:RuntimeCapabilityService",
60+
"packages/agent/src/services/e2b-capability-router.ts:E2BRemoteCapabilityRouterService",
61+
"packages/agent/src/services/remote-capability-router.ts:RemoteCapabilityRouterService",
62+
]),
63+
},
64+
],
65+
[
66+
"xr-session",
67+
{
68+
reason:
69+
"Hearwear and XR plugins expose the same XR session service contract for different runtime surfaces; only the enabled plugin registers its implementation.",
70+
classes: new Set([
71+
"plugins/plugin-hearwear/src/services/xr-session-service.ts:XRSessionService",
72+
"plugins/plugin-xr/src/services/xr-session-service.ts:XRSessionService",
73+
]),
74+
},
75+
],
5376
[
5477
"trajectories",
5578
{

packages/test/cloud-e2e/src/fixtures/stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import {
2929

3030
import { buildSharedEnv } from "./env";
3131

32-
const REPO_ROOT = resolve(import.meta.dirname, "../../../..");
32+
const REPO_ROOT = resolve(import.meta.dirname, "../../../../..");
3333
const LOG_DIR = resolve(import.meta.dirname, "../../.logs");
3434

3535
export interface StackHandle {

0 commit comments

Comments
 (0)