Skip to content

Commit 5de284c

Browse files
committed
fix(release): restore main release checks
1 parent dc54166 commit 5de284c

4 files changed

Lines changed: 30 additions & 6 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
78888d302b2263583430e41b9811277aab91937201d4de90cfbd5761e9b95727 config-baseline.json
2-
58e98b59498060d301104b3772332de5600eb674687b06d0d32a202370709ee0 config-baseline.core.json
1+
85842690af24b21a5e074d722930af95faaf6e91a918061bdc1b5c956860a7a0 config-baseline.json
2+
86ad0927d992bc873affb3e20a31c6e3c95b2185a91f46cc8e6262a723a78f7d config-baseline.core.json
33
323a9fd49a669951ca5b3442d95aad243bd1330083f9857e83a8dcfae2bbc9d0 config-baseline.channel.json
44
1f5592bfd141ba1e982ce31763a253c10afb080ab4ea2b6538299b114e29cee1 config-baseline.plugin.json

extensions/qa-lab/src/runtime-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export {
2020
searchQaBusMessages,
2121
sendQaBusMessage,
2222
setQaChannelRuntime,
23-
} from "../../qa-channel/api.js";
23+
} from "@openclaw/qa-channel/api.js";
2424
export type {
2525
QaBusAttachment,
2626
QaBusConversation,

src/config/schema.base.generated.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5693,6 +5693,13 @@ export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = {
56935693
type: "number",
56945694
exclusiveMinimum: 0,
56955695
},
5696+
gpus: {
5697+
type: "string",
5698+
minLength: 1,
5699+
title: "Sandbox Docker GPUs",
5700+
description:
5701+
'Optional Docker GPU passthrough value passed to --gpus, for example "all" or "device=GPU-uuid". Requires a compatible host runtime such as NVIDIA Container Toolkit.',
5702+
},
56965703
ulimits: {
56975704
type: "object",
56985705
propertyNames: {
@@ -7442,6 +7449,13 @@ export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = {
74427449
type: "number",
74437450
exclusiveMinimum: 0,
74447451
},
7452+
gpus: {
7453+
type: "string",
7454+
minLength: 1,
7455+
title: "Agent Sandbox Docker GPUs",
7456+
description:
7457+
"Per-agent Docker GPU passthrough override for sandbox containers.",
7458+
},
74457459
ulimits: {
74467460
type: "object",
74477461
propertyNames: {
@@ -27191,6 +27205,11 @@ export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = {
2719127205
help: "DANGEROUS break-glass override that allows sandbox Docker network mode container:<id>. This joins another container namespace and weakens sandbox isolation.",
2719227206
tags: ["security", "access", "storage", "advanced"],
2719327207
},
27208+
"agents.defaults.sandbox.docker.gpus": {
27209+
label: "Sandbox Docker GPUs",
27210+
help: 'Optional Docker GPU passthrough value passed to --gpus, for example "all" or "device=GPU-uuid". Requires a compatible host runtime such as NVIDIA Container Toolkit.',
27211+
tags: ["storage"],
27212+
},
2719427213
"commands.native": {
2719527214
label: "Native Commands",
2719627215
help: "Registers native slash/menu commands with channels that support command registration (Discord, Slack, Telegram). Keep enabled for discoverability unless you intentionally run text-only command workflows.",
@@ -28324,6 +28343,11 @@ export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = {
2832428343
help: "Per-agent DANGEROUS override for container namespace joins in sandbox Docker network mode.",
2832528344
tags: ["security", "access", "storage", "advanced"],
2832628345
},
28346+
"agents.list[].sandbox.docker.gpus": {
28347+
label: "Agent Sandbox Docker GPUs",
28348+
help: "Per-agent Docker GPU passthrough override for sandbox containers.",
28349+
tags: ["storage"],
28350+
},
2832728351
"discovery.mdns.mode": {
2832828352
label: "mDNS Discovery Mode",
2832928353
help: 'mDNS broadcast mode ("minimal" default, "full" includes cliPath/sshPort, "off" disables mDNS).',

src/plugins/contracts/plugin-sdk-subpaths.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -683,15 +683,15 @@ describe("plugin-sdk subpath exports", () => {
683683
]);
684684
expectSourceContains(
685685
"memory-core-host-runtime-core",
686-
'export * from "../memory-host-sdk/runtime-core.js";',
686+
'export * from "../../packages/memory-host-sdk/src/runtime-core.js";',
687687
);
688688
expectSourceContains(
689689
"memory-core-host-runtime-cli",
690-
'export * from "../memory-host-sdk/runtime-cli.js";',
690+
'export * from "../../packages/memory-host-sdk/src/runtime-cli.js";',
691691
);
692692
expectSourceContains(
693693
"memory-core-host-runtime-files",
694-
'export * from "../memory-host-sdk/runtime-files.js";',
694+
'export * from "../../packages/memory-host-sdk/src/runtime-files.js";',
695695
);
696696
expectSourceMentions("plugin-test-runtime", [
697697
"registerSingleProviderPlugin",

0 commit comments

Comments
 (0)