mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
1181 lines
No EOL
52 KiB
JSON
1181 lines
No EOL
52 KiB
JSON
{
|
|
"title": "Verify the sandbox can lint and test the project",
|
|
"spec": {
|
|
"run_id": "01KRCDY500EQ8F2AW29842BGGG",
|
|
"settings": {
|
|
"project": {
|
|
"name": null,
|
|
"description": null,
|
|
"metadata": {}
|
|
},
|
|
"workflow": {
|
|
"name": null,
|
|
"description": null,
|
|
"graph": "workflow.fabro",
|
|
"metadata": {}
|
|
},
|
|
"run": {
|
|
"goal": {
|
|
"type": "inline",
|
|
"value": "Verify the sandbox can lint and test the project"
|
|
},
|
|
"working_dir": null,
|
|
"metadata": {},
|
|
"inputs": {},
|
|
"model": {
|
|
"provider": "anthropic",
|
|
"name": "claude-sonnet-4-6",
|
|
"fallbacks": []
|
|
},
|
|
"git": {
|
|
"author": null
|
|
},
|
|
"prepare": {
|
|
"commands": [],
|
|
"timeout_ms": 300000
|
|
},
|
|
"execution": {
|
|
"mode": "normal",
|
|
"approval": "prompt"
|
|
},
|
|
"checkpoint": {
|
|
"exclude_globs": []
|
|
},
|
|
"sandbox": {
|
|
"provider": "daytona",
|
|
"preserve": false,
|
|
"stop_on_terminal": true,
|
|
"devcontainer": false,
|
|
"env": {},
|
|
"docker": {
|
|
"image": "buildpack-deps:noble",
|
|
"network_mode": null,
|
|
"memory_limit": 4000000000,
|
|
"cpu_quota": 200000,
|
|
"env_vars": {},
|
|
"skip_clone": false
|
|
},
|
|
"daytona": {
|
|
"auto_stop_interval": 30,
|
|
"labels": {
|
|
"repo": "fabro-sh/fabro"
|
|
},
|
|
"snapshot": {
|
|
"name": "fabro-v8",
|
|
"cpu": 8,
|
|
"memory_gb": 16,
|
|
"disk_gb": 20,
|
|
"dockerfile": {
|
|
"type": "inline",
|
|
"value": "FROM ubuntu:24.04\n\nRUN apt-get update && apt-get install -y --no-install-recommends curl git ca-certificates build-essential pkg-config libssl-dev unzip python3 && rm -rf /var/lib/apt/lists/*\n\n# GitHub CLI\nRUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg && echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main\" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null && apt-get update && apt-get install -y --no-install-recommends gh && rm -rf /var/lib/apt/lists/*\n\n# Rust\nRUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y\nENV PATH=\"/root/.cargo/bin:${PATH}\"\nRUN rustup toolchain install nightly-2026-04-14 --profile minimal --component clippy,rustfmt\nRUN cargo install cargo-nextest --locked\nENV CARGO_INCREMENTAL=0\n\n# Bun\nRUN curl -fsSL https://bun.sh/install | bash\nENV PATH=\"/root/.bun/bin:${PATH}\"\n\nWORKDIR /root\n"
|
|
}
|
|
},
|
|
"network": null,
|
|
"skip_clone": false
|
|
}
|
|
},
|
|
"notifications": {},
|
|
"interviews": {
|
|
"provider": null,
|
|
"slack": null
|
|
},
|
|
"agent": {
|
|
"permissions": null,
|
|
"mcps": {}
|
|
},
|
|
"hooks": [],
|
|
"scm": {
|
|
"provider": null,
|
|
"owner": null,
|
|
"repository": null,
|
|
"github": null
|
|
},
|
|
"pull_request": {
|
|
"enabled": true,
|
|
"draft": false,
|
|
"auto_merge": false,
|
|
"merge_strategy": "squash"
|
|
},
|
|
"artifacts": {
|
|
"include": []
|
|
},
|
|
"integrations": {
|
|
"github": {
|
|
"permissions": {}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"graph": {
|
|
"name": "Smoke",
|
|
"nodes": {
|
|
"exit": {
|
|
"id": "exit",
|
|
"attrs": {
|
|
"label": {
|
|
"String": "Exit"
|
|
},
|
|
"shape": {
|
|
"String": "Msquare"
|
|
}
|
|
}
|
|
},
|
|
"compile_typescript": {
|
|
"id": "compile_typescript",
|
|
"attrs": {
|
|
"label": {
|
|
"String": "Compile TypeScript"
|
|
},
|
|
"shape": {
|
|
"String": "parallelogram"
|
|
},
|
|
"goal_gate": {
|
|
"Boolean": true
|
|
},
|
|
"script": {
|
|
"String": "cd apps/fabro-web && bun install && bun run typecheck 2>&1"
|
|
}
|
|
}
|
|
},
|
|
"compile_rust": {
|
|
"id": "compile_rust",
|
|
"attrs": {
|
|
"goal_gate": {
|
|
"Boolean": true
|
|
},
|
|
"script": {
|
|
"String": "cargo check -q --workspace 2>&1"
|
|
},
|
|
"label": {
|
|
"String": "Compile Rust"
|
|
},
|
|
"shape": {
|
|
"String": "parallelogram"
|
|
}
|
|
}
|
|
},
|
|
"test_typescript": {
|
|
"id": "test_typescript",
|
|
"attrs": {
|
|
"shape": {
|
|
"String": "parallelogram"
|
|
},
|
|
"script": {
|
|
"String": "cd apps/fabro-web && bun test 2>&1"
|
|
},
|
|
"label": {
|
|
"String": "Test TypeScript"
|
|
},
|
|
"goal_gate": {
|
|
"Boolean": true
|
|
}
|
|
}
|
|
},
|
|
"test_rust": {
|
|
"id": "test_rust",
|
|
"attrs": {
|
|
"goal_gate": {
|
|
"Boolean": true
|
|
},
|
|
"shape": {
|
|
"String": "parallelogram"
|
|
},
|
|
"script": {
|
|
"String": "ulimit -n 4096 && cargo nextest run --cargo-quiet --workspace --status-level fail 2>&1"
|
|
},
|
|
"label": {
|
|
"String": "Test Rust"
|
|
}
|
|
}
|
|
},
|
|
"toolchain": {
|
|
"id": "toolchain",
|
|
"attrs": {
|
|
"goal_gate": {
|
|
"Boolean": true
|
|
},
|
|
"label": {
|
|
"String": "Toolchain"
|
|
},
|
|
"script": {
|
|
"String": "rustc --version && cargo --version && bun --version 2>&1"
|
|
},
|
|
"shape": {
|
|
"String": "parallelogram"
|
|
}
|
|
}
|
|
},
|
|
"lint_rust": {
|
|
"id": "lint_rust",
|
|
"attrs": {
|
|
"script": {
|
|
"String": "cargo +nightly-2026-04-14 fmt --check --all 2>&1 && cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1"
|
|
},
|
|
"goal_gate": {
|
|
"Boolean": true
|
|
},
|
|
"label": {
|
|
"String": "Lint Rust"
|
|
},
|
|
"shape": {
|
|
"String": "parallelogram"
|
|
}
|
|
}
|
|
},
|
|
"start": {
|
|
"id": "start",
|
|
"attrs": {
|
|
"label": {
|
|
"String": "Start"
|
|
},
|
|
"shape": {
|
|
"String": "Mdiamond"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"edges": [
|
|
{
|
|
"from": "start",
|
|
"to": "toolchain",
|
|
"attrs": {}
|
|
},
|
|
{
|
|
"from": "toolchain",
|
|
"to": "compile_rust",
|
|
"attrs": {}
|
|
},
|
|
{
|
|
"from": "compile_rust",
|
|
"to": "compile_typescript",
|
|
"attrs": {}
|
|
},
|
|
{
|
|
"from": "compile_typescript",
|
|
"to": "lint_rust",
|
|
"attrs": {}
|
|
},
|
|
{
|
|
"from": "lint_rust",
|
|
"to": "test_rust",
|
|
"attrs": {}
|
|
},
|
|
{
|
|
"from": "test_rust",
|
|
"to": "test_typescript",
|
|
"attrs": {}
|
|
},
|
|
{
|
|
"from": "test_typescript",
|
|
"to": "exit",
|
|
"attrs": {}
|
|
}
|
|
],
|
|
"attrs": {
|
|
"rankdir": {
|
|
"String": "LR"
|
|
},
|
|
"goal": {
|
|
"String": "Verify the sandbox can lint and test the project"
|
|
},
|
|
"retry_target": {
|
|
"String": "exit"
|
|
}
|
|
}
|
|
},
|
|
"graph_source": "digraph Smoke {\n graph [goal=\"Verify the sandbox can lint and test the project\", retry_target=exit]\n rankdir=LR\n\n start [shape=Mdiamond, label=\"Start\"]\n exit [shape=Msquare, label=\"Exit\"]\n\n toolchain [label=\"Toolchain\", shape=parallelogram, script=\"rustc --version && cargo --version && bun --version 2>&1\", goal_gate=true]\n compile_rust [label=\"Compile Rust\", shape=parallelogram, script=\"cargo check -q --workspace 2>&1\", goal_gate=true]\n compile_typescript [label=\"Compile TypeScript\", shape=parallelogram, script=\"cd apps/fabro-web && bun install && bun run typecheck 2>&1\", goal_gate=true]\n lint_rust [label=\"Lint Rust\", shape=parallelogram, script=\"cargo +nightly-2026-04-14 fmt --check --all 2>&1 && cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1\", goal_gate=true]\n test_rust [label=\"Test Rust\", shape=parallelogram, script=\"ulimit -n 4096 && cargo nextest run --cargo-quiet --workspace --status-level fail 2>&1\", goal_gate=true]\n test_typescript [label=\"Test TypeScript\", shape=parallelogram, script=\"cd apps/fabro-web && bun test 2>&1\", goal_gate=true]\n\n start -> toolchain\n toolchain -> compile_rust\n compile_rust -> compile_typescript\n compile_typescript -> lint_rust\n lint_rust -> test_rust\n test_rust -> test_typescript\n test_typescript -> exit\n}\n",
|
|
"workflow_slug": "smoke",
|
|
"source_directory": "/Users/bhelmkamp/p/fabro-sh/fabro",
|
|
"provenance": {
|
|
"server": {
|
|
"version": "0.230.0-nightly.0"
|
|
},
|
|
"client": {
|
|
"user_agent": "fabro-cli/0.230.0-nightly.0",
|
|
"name": "fabro-cli",
|
|
"version": "0.230.0-nightly.0"
|
|
},
|
|
"subject": {
|
|
"kind": "user",
|
|
"identity": {
|
|
"issuer": "https://github.com",
|
|
"subject": "19"
|
|
},
|
|
"login": "brynary",
|
|
"auth_method": "github"
|
|
}
|
|
},
|
|
"manifest_blob": "a223e9a1c15e6b143ac5009ed400a76b5f9e356754a3b219f969c6ac88a82c4c",
|
|
"definition_blob": "8902c1ad75aca521861eb1a821cc58618a4f3fcdf3b8773e0059fef8b07a1b78",
|
|
"git": {
|
|
"origin_url": "https://github.com/fabro-sh/fabro",
|
|
"branch": "add-fabro-mcp-server",
|
|
"sha": "ab78422c35d0e55b149358709e8ce341e5732933",
|
|
"dirty": "dirty",
|
|
"push_outcome": {
|
|
"type": "not_attempted"
|
|
}
|
|
}
|
|
},
|
|
"web_url": "http://127.0.0.1:32276/runs/01KRCDY500EQ8F2AW29842BGGG",
|
|
"start": {
|
|
"start_time": "2026-05-11T21:10:47.215469Z",
|
|
"run_branch": "fabro/run/01KRCDY500EQ8F2AW29842BGGG",
|
|
"base_sha": "ab78422c35d0e55b149358709e8ce341e5732933"
|
|
},
|
|
"status": {
|
|
"kind": "running"
|
|
},
|
|
"status_updated_at": "2026-05-11T21:10:47.215543Z",
|
|
"last_event_at": "2026-05-11T21:19:55.018875Z",
|
|
"pending_control": null,
|
|
"checkpoints": [
|
|
{
|
|
"seq": 19,
|
|
"checkpoint": {
|
|
"timestamp": "2026-05-11T21:10:49.975003Z",
|
|
"current_node": "start",
|
|
"completed_nodes": [
|
|
"start"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"current_node": "start",
|
|
"failure_signature": "",
|
|
"internal.run_id": "01KRCDY500EQ8F2AW29842BGGG",
|
|
"outcome": "succeeded",
|
|
"graph.goal": "Verify the sandbox can lint and test the project",
|
|
"graph.rankdir": "LR",
|
|
"failure_class": "",
|
|
"graph.retry_target": "exit",
|
|
"internal.fidelity": "compact",
|
|
"internal.retry_count.start": 0,
|
|
"internal.thread_id": null,
|
|
"internal.node_visit_count": 1,
|
|
"internal.work_dir": "/home/daytona/workspace"
|
|
},
|
|
"node_outcomes": {
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "toolchain",
|
|
"node_visits": {
|
|
"start": 1
|
|
}
|
|
},
|
|
"diff": {}
|
|
},
|
|
{
|
|
"seq": 27,
|
|
"checkpoint": {
|
|
"timestamp": "2026-05-11T21:10:59.828638Z",
|
|
"current_node": "toolchain",
|
|
"completed_nodes": [
|
|
"start",
|
|
"toolchain"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"failure_signature": "",
|
|
"internal.run_id": "01KRCDY500EQ8F2AW29842BGGG",
|
|
"internal.thread_id": "start",
|
|
"internal.work_dir": "/home/daytona/workspace",
|
|
"graph.goal": "Verify the sandbox can lint and test the project",
|
|
"thread.start.current_node": "toolchain",
|
|
"internal.retry_count.start": 0,
|
|
"graph.rankdir": "LR",
|
|
"graph.retry_target": "exit",
|
|
"internal.node_visit_count": 1,
|
|
"failure_class": "",
|
|
"command.output": "blob://sha256/0f445145c30db4edc762837f8ad7fdbcfcf07d57265b2bc38b6b276be718c75a",
|
|
"internal.fidelity": "compact",
|
|
"current_node": "toolchain",
|
|
"outcome": "succeeded",
|
|
"internal.retry_count.toolchain": 0
|
|
},
|
|
"node_outcomes": {
|
|
"toolchain": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/0f445145c30db4edc762837f8ad7fdbcfcf07d57265b2bc38b6b276be718c75a"
|
|
},
|
|
"notes": "Script completed: rustc --version && cargo --version && bun --version 2>&1",
|
|
"usage": null
|
|
},
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "compile_rust",
|
|
"git_commit_sha": "b120a09f60bf39950cabc014b15ddd30ccad821a",
|
|
"node_visits": {
|
|
"start": 1,
|
|
"toolchain": 1
|
|
}
|
|
},
|
|
"diff": {
|
|
"summary": {
|
|
"files_changed": 0,
|
|
"additions": 0,
|
|
"deletions": 0
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"seq": 37,
|
|
"checkpoint": {
|
|
"timestamp": "2026-05-11T21:14:15.170978Z",
|
|
"current_node": "compile_rust",
|
|
"completed_nodes": [
|
|
"start",
|
|
"toolchain",
|
|
"compile_rust"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"graph.goal": "Verify the sandbox can lint and test the project",
|
|
"internal.retry_count.start": 0,
|
|
"internal.retry_count.toolchain": 0,
|
|
"outcome": "succeeded",
|
|
"internal.node_visit_count": 1,
|
|
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126",
|
|
"internal.run_id": "01KRCDY500EQ8F2AW29842BGGG",
|
|
"current_node": "compile_rust",
|
|
"internal.retry_count.compile_rust": 0,
|
|
"graph.rankdir": "LR",
|
|
"failure_class": "",
|
|
"internal.fidelity": "compact",
|
|
"thread.toolchain.current_node": "compile_rust",
|
|
"thread.start.current_node": "toolchain",
|
|
"failure_signature": "",
|
|
"internal.work_dir": "/home/daytona/workspace",
|
|
"graph.retry_target": "exit",
|
|
"internal.thread_id": "toolchain"
|
|
},
|
|
"node_outcomes": {
|
|
"toolchain": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/0f445145c30db4edc762837f8ad7fdbcfcf07d57265b2bc38b6b276be718c75a"
|
|
},
|
|
"notes": "Script completed: rustc --version && cargo --version && bun --version 2>&1",
|
|
"usage": null
|
|
},
|
|
"compile_rust": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126"
|
|
},
|
|
"notes": "Script completed: cargo check -q --workspace 2>&1",
|
|
"usage": null
|
|
},
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "compile_typescript",
|
|
"git_commit_sha": "7719a295cc1ea202431348f07da30299ca9a2abf",
|
|
"node_visits": {
|
|
"toolchain": 1,
|
|
"start": 1,
|
|
"compile_rust": 1
|
|
}
|
|
},
|
|
"diff": {
|
|
"summary": {
|
|
"files_changed": 0,
|
|
"additions": 0,
|
|
"deletions": 0
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"seq": 47,
|
|
"checkpoint": {
|
|
"timestamp": "2026-05-11T21:14:31.576059Z",
|
|
"current_node": "compile_typescript",
|
|
"completed_nodes": [
|
|
"start",
|
|
"toolchain",
|
|
"compile_rust",
|
|
"compile_typescript"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"graph.retry_target": "exit",
|
|
"graph.goal": "Verify the sandbox can lint and test the project",
|
|
"outcome": "succeeded",
|
|
"command.output": "blob://sha256/c467fa7b97e5ecd693b1bf91fbdcd6901333eb14fbe99369a52cba2a8a56ef39",
|
|
"internal.retry_count.compile_typescript": 0,
|
|
"internal.node_visit_count": 1,
|
|
"thread.start.current_node": "toolchain",
|
|
"internal.retry_count.toolchain": 0,
|
|
"failure_signature": "",
|
|
"internal.work_dir": "/home/daytona/workspace",
|
|
"thread.compile_rust.current_node": "compile_typescript",
|
|
"failure_class": "",
|
|
"graph.rankdir": "LR",
|
|
"current_node": "compile_typescript",
|
|
"internal.fidelity": "compact",
|
|
"internal.retry_count.compile_rust": 0,
|
|
"internal.retry_count.start": 0,
|
|
"internal.run_id": "01KRCDY500EQ8F2AW29842BGGG",
|
|
"internal.thread_id": "compile_rust",
|
|
"thread.toolchain.current_node": "compile_rust"
|
|
},
|
|
"node_outcomes": {
|
|
"compile_typescript": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/c467fa7b97e5ecd693b1bf91fbdcd6901333eb14fbe99369a52cba2a8a56ef39"
|
|
},
|
|
"notes": "Script completed: cd apps/fabro-web && bun install && bun run typecheck 2>&1",
|
|
"usage": null
|
|
},
|
|
"compile_rust": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126"
|
|
},
|
|
"notes": "Script completed: cargo check -q --workspace 2>&1",
|
|
"usage": null
|
|
},
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
},
|
|
"toolchain": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/0f445145c30db4edc762837f8ad7fdbcfcf07d57265b2bc38b6b276be718c75a"
|
|
},
|
|
"notes": "Script completed: rustc --version && cargo --version && bun --version 2>&1",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "lint_rust",
|
|
"git_commit_sha": "540e9c97a5dcc69192321a56de2f9b74053bcea5",
|
|
"node_visits": {
|
|
"start": 1,
|
|
"toolchain": 1,
|
|
"compile_rust": 1,
|
|
"compile_typescript": 1
|
|
}
|
|
},
|
|
"diff": {
|
|
"summary": {
|
|
"files_changed": 0,
|
|
"additions": 0,
|
|
"deletions": 0
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"seq": 57,
|
|
"checkpoint": {
|
|
"timestamp": "2026-05-11T21:17:19.920870Z",
|
|
"current_node": "lint_rust",
|
|
"completed_nodes": [
|
|
"start",
|
|
"toolchain",
|
|
"compile_rust",
|
|
"compile_typescript",
|
|
"lint_rust"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"thread.compile_rust.current_node": "compile_typescript",
|
|
"outcome": "succeeded",
|
|
"failure_signature": "",
|
|
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126",
|
|
"internal.retry_count.start": 0,
|
|
"failure_class": "",
|
|
"internal.thread_id": "compile_typescript",
|
|
"thread.compile_typescript.current_node": "lint_rust",
|
|
"graph.rankdir": "LR",
|
|
"graph.retry_target": "exit",
|
|
"internal.work_dir": "/home/daytona/workspace",
|
|
"thread.start.current_node": "toolchain",
|
|
"internal.retry_count.compile_rust": 0,
|
|
"internal.run_id": "01KRCDY500EQ8F2AW29842BGGG",
|
|
"current_node": "lint_rust",
|
|
"internal.node_visit_count": 1,
|
|
"graph.goal": "Verify the sandbox can lint and test the project",
|
|
"internal.retry_count.lint_rust": 0,
|
|
"internal.fidelity": "compact",
|
|
"internal.retry_count.compile_typescript": 0,
|
|
"internal.retry_count.toolchain": 0,
|
|
"thread.toolchain.current_node": "compile_rust"
|
|
},
|
|
"node_outcomes": {
|
|
"compile_rust": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126"
|
|
},
|
|
"notes": "Script completed: cargo check -q --workspace 2>&1",
|
|
"usage": null
|
|
},
|
|
"compile_typescript": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/c467fa7b97e5ecd693b1bf91fbdcd6901333eb14fbe99369a52cba2a8a56ef39"
|
|
},
|
|
"notes": "Script completed: cd apps/fabro-web && bun install && bun run typecheck 2>&1",
|
|
"usage": null
|
|
},
|
|
"lint_rust": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126"
|
|
},
|
|
"notes": "Script completed: cargo +nightly-2026-04-14 fmt --check --all 2>&1 && cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
|
|
"usage": null
|
|
},
|
|
"toolchain": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/0f445145c30db4edc762837f8ad7fdbcfcf07d57265b2bc38b6b276be718c75a"
|
|
},
|
|
"notes": "Script completed: rustc --version && cargo --version && bun --version 2>&1",
|
|
"usage": null
|
|
},
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "test_rust",
|
|
"git_commit_sha": "d0f469e714cda2fac1fb4c4fc44182e9671dc6cf",
|
|
"node_visits": {
|
|
"start": 1,
|
|
"toolchain": 1,
|
|
"compile_typescript": 1,
|
|
"compile_rust": 1,
|
|
"lint_rust": 1
|
|
}
|
|
},
|
|
"diff": {
|
|
"summary": {
|
|
"files_changed": 0,
|
|
"additions": 0,
|
|
"deletions": 0
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"seq": 67,
|
|
"checkpoint": {
|
|
"timestamp": "2026-05-11T21:19:55.015068Z",
|
|
"current_node": "test_rust",
|
|
"completed_nodes": [
|
|
"start",
|
|
"toolchain",
|
|
"compile_rust",
|
|
"compile_typescript",
|
|
"lint_rust",
|
|
"test_rust"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"graph.goal": "Verify the sandbox can lint and test the project",
|
|
"internal.retry_count.start": 0,
|
|
"internal.work_dir": "/home/daytona/workspace",
|
|
"thread.lint_rust.current_node": "test_rust",
|
|
"thread.compile_rust.current_node": "compile_typescript",
|
|
"current_node": "test_rust",
|
|
"graph.retry_target": "exit",
|
|
"internal.retry_count.toolchain": 0,
|
|
"internal.thread_id": "lint_rust",
|
|
"failure_class": "canceled",
|
|
"internal.retry_count.compile_rust": 0,
|
|
"internal.node_visit_count": 1,
|
|
"outcome": "failed",
|
|
"command.output": "blob://sha256/fa86112879510032d396ab50735eae1462c48eaa2a60c8cc1ca3be734daf042b",
|
|
"internal.fidelity": "compact",
|
|
"internal.retry_count.lint_rust": 0,
|
|
"internal.run_id": "01KRCDY500EQ8F2AW29842BGGG",
|
|
"thread.compile_typescript.current_node": "lint_rust",
|
|
"internal.retry_count.test_rust": 0,
|
|
"thread.toolchain.current_node": "compile_rust",
|
|
"failure_signature": "test_rust|canceled|script failed with exit code: <n> ## output fail [ <n>.231s] ( <n>/<n>) fabro-cli::it cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth stdout ─── running <n> test ━━━━━━━━━━━━━━━━━━━",
|
|
"internal.retry_count.compile_typescript": 0,
|
|
"graph.rankdir": "LR",
|
|
"thread.start.current_node": "toolchain"
|
|
},
|
|
"node_outcomes": {
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
},
|
|
"test_rust": {
|
|
"status": "failed",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/fa86112879510032d396ab50735eae1462c48eaa2a60c8cc1ca3be734daf042b"
|
|
},
|
|
"failure": {
|
|
"message": "Script failed with exit code: 100\n\n## output\n FAIL [ 0.231s] ( 723/5480) fabro-cli::it cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth\n stdout ───\n\n running 1 test\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n Snapshot: mcp_create_and_search_manage_real_runs_with_cli_auth\n Source: lib/crates/fabro-cli/tests/it/cmd/mcp.rs:554\n ────────────────────────────────────────────────────────────────────────────────\n Expression: rendered\n ────────────────────────────────────────────────────────────────────────────────\n -old snapshot\n +new results\n ────────────┬───────────────────────────────────────────────────────────────────\n 13 13 │ \"source\": \"mcp-test\"\n 14 14 │ },\n 15 15 │ \"source_directory\": \"[SOURCE_DIRECTORY]\",\n 16 16 │ \"repo_origin_url\": null,\n 17 │- \"goal\": \"Run tests and report results\"\n 17 │+ \"goal_preview\": \"Run tests and report results\",\n 18 │+ \"goal_truncated\": false\n 18 19 │ }\n 19 20 │ ],\n 20 21 │ \"next_cursor\": null\n 21 22 │ }\n ────────────┴───────────────────────────────────────────────────────────────────\n To update snapshots run `cargo insta review`\n Stopped on the first failure. Run `cargo insta test` to run all snapshots.\n test cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth ... FAILED\n\n failures:\n\n failures:\n cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth\n\n test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 467 filtered out; finished in 0.22s\n\n stderr ───\n\n thread 'cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth' (64070) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/insta-1.46.3/src/runtime.rs:719:13:\n snapshot assertion for 'mcp_create_and_search_manage_real_runs_with_cli_auth' failed in line 554\n note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace\n\n Cancelling due to test failure: 7 tests still running\n FAIL [ 0.046s] ( 726/5480) fabro-cli::it cmd::mcp::mcp_search_includes_archived_runs_by_default\n stdout ───\n\n running 1 test\n test cmd::mcp::mcp_search_includes_archived_runs_by_default ... FAILED\n\n failures:\n\n failures:\n cmd::mcp::mcp_search_includes_archived_runs_by_default\n\n test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 467 filtered out; finished in 0.03s\n\n stderr ───\n\n thread 'cmd::mcp::mcp_search_includes_archived_runs_by_default' (64521) panicked at lib/crates/fabro-cli/tests/it/cmd/mcp.rs:823:5:\n assertion `left == right` failed\n left: 1\n right: 2\n note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace\n\n────────────\n Summary [ 4.956s] 730/5480 tests run: 728 passed, 2 failed, 182 skipped\n FAIL [ 0.231s] ( 723/5480) fabro-cli::it cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth\n FAIL [ 0.046s] ( 726/5480) fabro-cli::it cmd::mcp::mcp_search_includes_archived_runs_by_default\nwarning: 4750/5480 tests were not run due to test failure (run with --no-fail-fast to run all tests, or run with --max-fail)\nerror: test run failed\n",
|
|
"failure_class": "canceled"
|
|
},
|
|
"usage": null
|
|
},
|
|
"toolchain": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/0f445145c30db4edc762837f8ad7fdbcfcf07d57265b2bc38b6b276be718c75a"
|
|
},
|
|
"notes": "Script completed: rustc --version && cargo --version && bun --version 2>&1",
|
|
"usage": null
|
|
},
|
|
"compile_rust": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126"
|
|
},
|
|
"notes": "Script completed: cargo check -q --workspace 2>&1",
|
|
"usage": null
|
|
},
|
|
"compile_typescript": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/c467fa7b97e5ecd693b1bf91fbdcd6901333eb14fbe99369a52cba2a8a56ef39"
|
|
},
|
|
"notes": "Script completed: cd apps/fabro-web && bun install && bun run typecheck 2>&1",
|
|
"usage": null
|
|
},
|
|
"lint_rust": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126"
|
|
},
|
|
"notes": "Script completed: cargo +nightly-2026-04-14 fmt --check --all 2>&1 && cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "test_typescript",
|
|
"git_commit_sha": "a5810c59555bcb0158da3bdf29776c277425ff60",
|
|
"node_visits": {
|
|
"compile_typescript": 1,
|
|
"start": 1,
|
|
"lint_rust": 1,
|
|
"compile_rust": 1,
|
|
"toolchain": 1,
|
|
"test_rust": 1
|
|
}
|
|
},
|
|
"diff": {
|
|
"summary": {
|
|
"files_changed": 0,
|
|
"additions": 0,
|
|
"deletions": 0
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"seq": 0,
|
|
"checkpoint": {
|
|
"timestamp": "2026-05-11T21:20:01.287282Z",
|
|
"current_node": "test_typescript",
|
|
"completed_nodes": [
|
|
"start",
|
|
"toolchain",
|
|
"compile_rust",
|
|
"compile_typescript",
|
|
"lint_rust",
|
|
"test_rust",
|
|
"test_typescript"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"internal.retry_count.test_typescript": 0,
|
|
"internal.retry_count.compile_typescript": 0,
|
|
"current_node": "test_typescript",
|
|
"thread.toolchain.current_node": "compile_rust",
|
|
"thread.lint_rust.current_node": "test_rust",
|
|
"thread.test_rust.current_node": "test_typescript",
|
|
"internal.work_dir": "/home/daytona/workspace",
|
|
"internal.node_visit_count": 1,
|
|
"failure_signature": "",
|
|
"internal.retry_count.toolchain": 0,
|
|
"thread.compile_rust.current_node": "compile_typescript",
|
|
"internal.retry_count.test_rust": 0,
|
|
"graph.goal": "Verify the sandbox can lint and test the project",
|
|
"thread.compile_typescript.current_node": "lint_rust",
|
|
"command.output": "blob://sha256/d10c10578c42d903f2783fcd52a209e75f0cd4fd242bccb83d338d0becc28b79",
|
|
"graph.rankdir": "LR",
|
|
"graph.retry_target": "exit",
|
|
"internal.fidelity": "compact",
|
|
"outcome": "succeeded",
|
|
"internal.run_id": "01KRCDY500EQ8F2AW29842BGGG",
|
|
"thread.start.current_node": "toolchain",
|
|
"internal.thread_id": "test_rust",
|
|
"internal.retry_count.start": 0,
|
|
"failure_class": "",
|
|
"internal.retry_count.compile_rust": 0,
|
|
"internal.retry_count.lint_rust": 0
|
|
},
|
|
"node_outcomes": {
|
|
"compile_rust": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126"
|
|
},
|
|
"notes": "Script completed: cargo check -q --workspace 2>&1",
|
|
"usage": null
|
|
},
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
},
|
|
"test_rust": {
|
|
"status": "failed",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/fa86112879510032d396ab50735eae1462c48eaa2a60c8cc1ca3be734daf042b"
|
|
},
|
|
"failure": {
|
|
"message": "Script failed with exit code: 100\n\n## output\n FAIL [ 0.231s] ( 723/5480) fabro-cli::it cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth\n stdout ───\n\n running 1 test\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n Snapshot: mcp_create_and_search_manage_real_runs_with_cli_auth\n Source: lib/crates/fabro-cli/tests/it/cmd/mcp.rs:554\n ────────────────────────────────────────────────────────────────────────────────\n Expression: rendered\n ────────────────────────────────────────────────────────────────────────────────\n -old snapshot\n +new results\n ────────────┬───────────────────────────────────────────────────────────────────\n 13 13 │ \"source\": \"mcp-test\"\n 14 14 │ },\n 15 15 │ \"source_directory\": \"[SOURCE_DIRECTORY]\",\n 16 16 │ \"repo_origin_url\": null,\n 17 │- \"goal\": \"Run tests and report results\"\n 17 │+ \"goal_preview\": \"Run tests and report results\",\n 18 │+ \"goal_truncated\": false\n 18 19 │ }\n 19 20 │ ],\n 20 21 │ \"next_cursor\": null\n 21 22 │ }\n ────────────┴───────────────────────────────────────────────────────────────────\n To update snapshots run `cargo insta review`\n Stopped on the first failure. Run `cargo insta test` to run all snapshots.\n test cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth ... FAILED\n\n failures:\n\n failures:\n cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth\n\n test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 467 filtered out; finished in 0.22s\n\n stderr ───\n\n thread 'cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth' (64070) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/insta-1.46.3/src/runtime.rs:719:13:\n snapshot assertion for 'mcp_create_and_search_manage_real_runs_with_cli_auth' failed in line 554\n note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace\n\n Cancelling due to test failure: 7 tests still running\n FAIL [ 0.046s] ( 726/5480) fabro-cli::it cmd::mcp::mcp_search_includes_archived_runs_by_default\n stdout ───\n\n running 1 test\n test cmd::mcp::mcp_search_includes_archived_runs_by_default ... FAILED\n\n failures:\n\n failures:\n cmd::mcp::mcp_search_includes_archived_runs_by_default\n\n test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 467 filtered out; finished in 0.03s\n\n stderr ───\n\n thread 'cmd::mcp::mcp_search_includes_archived_runs_by_default' (64521) panicked at lib/crates/fabro-cli/tests/it/cmd/mcp.rs:823:5:\n assertion `left == right` failed\n left: 1\n right: 2\n note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace\n\n────────────\n Summary [ 4.956s] 730/5480 tests run: 728 passed, 2 failed, 182 skipped\n FAIL [ 0.231s] ( 723/5480) fabro-cli::it cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth\n FAIL [ 0.046s] ( 726/5480) fabro-cli::it cmd::mcp::mcp_search_includes_archived_runs_by_default\nwarning: 4750/5480 tests were not run due to test failure (run with --no-fail-fast to run all tests, or run with --max-fail)\nerror: test run failed\n",
|
|
"failure_class": "canceled"
|
|
},
|
|
"usage": null
|
|
},
|
|
"lint_rust": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126"
|
|
},
|
|
"notes": "Script completed: cargo +nightly-2026-04-14 fmt --check --all 2>&1 && cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
|
|
"usage": null
|
|
},
|
|
"toolchain": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/0f445145c30db4edc762837f8ad7fdbcfcf07d57265b2bc38b6b276be718c75a"
|
|
},
|
|
"notes": "Script completed: rustc --version && cargo --version && bun --version 2>&1",
|
|
"usage": null
|
|
},
|
|
"test_typescript": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/d10c10578c42d903f2783fcd52a209e75f0cd4fd242bccb83d338d0becc28b79"
|
|
},
|
|
"notes": "Script completed: cd apps/fabro-web && bun test 2>&1",
|
|
"usage": null
|
|
},
|
|
"compile_typescript": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/c467fa7b97e5ecd693b1bf91fbdcd6901333eb14fbe99369a52cba2a8a56ef39"
|
|
},
|
|
"notes": "Script completed: cd apps/fabro-web && bun install && bun run typecheck 2>&1",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "exit",
|
|
"node_visits": {
|
|
"start": 1,
|
|
"lint_rust": 1,
|
|
"compile_rust": 1,
|
|
"toolchain": 1,
|
|
"compile_typescript": 1,
|
|
"test_rust": 1,
|
|
"test_typescript": 1
|
|
}
|
|
},
|
|
"diff": {}
|
|
}
|
|
],
|
|
"conclusion": null,
|
|
"sandbox": {
|
|
"provider": "daytona",
|
|
"image": "buildpack-deps:noble",
|
|
"snapshot": "fabro-v8",
|
|
"runtime": {
|
|
"id": "fabro-01KRCDY500EQ8F2AW29842BGGG",
|
|
"working_directory": "/home/daytona/workspace",
|
|
"repo_cloned": true,
|
|
"clone_origin_url": "https://github.com/fabro-sh/fabro",
|
|
"clone_branch": "add-fabro-mcp-server"
|
|
}
|
|
},
|
|
"pull_request": null,
|
|
"superseded_by": null,
|
|
"pending_interviews": {},
|
|
"stages": {
|
|
"test_typescript@1": {
|
|
"first_event_seq": 70,
|
|
"prompt": null,
|
|
"response": null,
|
|
"completion": null,
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": {
|
|
"script": "cd apps/fabro-web && bun test 2>&1",
|
|
"command": "exec 2>&1\ncd apps/fabro-web && bun test 2>&1",
|
|
"language": "shell"
|
|
},
|
|
"script_timing": null,
|
|
"parallel_results": null,
|
|
"output": null,
|
|
"started_at": "2026-05-11T21:19:55.018402Z",
|
|
"handler": "command",
|
|
"usage": {
|
|
"input_tokens": 0,
|
|
"output_tokens": 0,
|
|
"total_tokens": 0,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 0,
|
|
"cache_write_tokens": 0
|
|
},
|
|
"state": "running"
|
|
},
|
|
"start@1": {
|
|
"first_event_seq": 16,
|
|
"prompt": null,
|
|
"response": null,
|
|
"completion": {
|
|
"outcome": "succeeded",
|
|
"notes": null,
|
|
"failure_reason": null,
|
|
"timestamp": "2026-05-11T21:10:49.974843Z"
|
|
},
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": null,
|
|
"script_timing": null,
|
|
"parallel_results": null,
|
|
"output": null,
|
|
"started_at": "2026-05-11T21:10:49.974717Z",
|
|
"handler": "start",
|
|
"duration_ms": 0,
|
|
"usage": {
|
|
"input_tokens": 0,
|
|
"output_tokens": 0,
|
|
"total_tokens": 0,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 0,
|
|
"cache_write_tokens": 0
|
|
},
|
|
"state": "succeeded"
|
|
},
|
|
"toolchain@1": {
|
|
"first_event_seq": 20,
|
|
"prompt": null,
|
|
"response": null,
|
|
"completion": {
|
|
"outcome": "succeeded",
|
|
"notes": "Script completed: rustc --version && cargo --version && bun --version 2>&1",
|
|
"failure_reason": null,
|
|
"timestamp": "2026-05-11T21:10:52.310511Z"
|
|
},
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": {
|
|
"script": "rustc --version && cargo --version && bun --version 2>&1",
|
|
"command": "exec 2>&1\nrustc --version && cargo --version && bun --version 2>&1",
|
|
"language": "shell"
|
|
},
|
|
"script_timing": {
|
|
"output": "blob://sha256/0f445145c30db4edc762837f8ad7fdbcfcf07d57265b2bc38b6b276be718c75a",
|
|
"exit_code": 0,
|
|
"duration_ms": 2329,
|
|
"termination": "exited",
|
|
"output_bytes": 79,
|
|
"live_streaming": true
|
|
},
|
|
"parallel_results": null,
|
|
"output": null,
|
|
"output_bytes": 79,
|
|
"live_streaming": true,
|
|
"termination": "exited",
|
|
"started_at": "2026-05-11T21:10:49.975112Z",
|
|
"handler": "command",
|
|
"duration_ms": 2335,
|
|
"usage": {
|
|
"input_tokens": 0,
|
|
"output_tokens": 0,
|
|
"total_tokens": 0,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 0,
|
|
"cache_write_tokens": 0
|
|
},
|
|
"state": "succeeded"
|
|
},
|
|
"compile_typescript@1": {
|
|
"first_event_seq": 40,
|
|
"prompt": null,
|
|
"response": null,
|
|
"completion": {
|
|
"outcome": "succeeded",
|
|
"notes": "Script completed: cd apps/fabro-web && bun install && bun run typecheck 2>&1",
|
|
"failure_reason": null,
|
|
"timestamp": "2026-05-11T21:14:24.465846Z"
|
|
},
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": {
|
|
"script": "cd apps/fabro-web && bun install && bun run typecheck 2>&1",
|
|
"command": "exec 2>&1\ncd apps/fabro-web && bun install && bun run typecheck 2>&1",
|
|
"language": "shell"
|
|
},
|
|
"script_timing": {
|
|
"output": "blob://sha256/c467fa7b97e5ecd693b1bf91fbdcd6901333eb14fbe99369a52cba2a8a56ef39",
|
|
"exit_code": 0,
|
|
"duration_ms": 9289,
|
|
"termination": "exited",
|
|
"output_bytes": 642,
|
|
"live_streaming": true
|
|
},
|
|
"parallel_results": null,
|
|
"output": null,
|
|
"output_bytes": 642,
|
|
"live_streaming": true,
|
|
"termination": "exited",
|
|
"started_at": "2026-05-11T21:14:15.172651Z",
|
|
"handler": "command",
|
|
"duration_ms": 9293,
|
|
"usage": {
|
|
"input_tokens": 0,
|
|
"output_tokens": 0,
|
|
"total_tokens": 0,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 0,
|
|
"cache_write_tokens": 0
|
|
},
|
|
"state": "succeeded"
|
|
},
|
|
"test_rust@1": {
|
|
"first_event_seq": 60,
|
|
"prompt": null,
|
|
"response": null,
|
|
"completion": {
|
|
"outcome": "failed",
|
|
"notes": null,
|
|
"failure_reason": "Script failed with exit code: 100\n\n## output\n FAIL [ 0.231s] ( 723/5480) fabro-cli::it cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth\n stdout ───\n\n running 1 test\n ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n Snapshot: mcp_create_and_search_manage_real_runs_with_cli_auth\n Source: lib/crates/fabro-cli/tests/it/cmd/mcp.rs:554\n ────────────────────────────────────────────────────────────────────────────────\n Expression: rendered\n ────────────────────────────────────────────────────────────────────────────────\n -old snapshot\n +new results\n ────────────┬───────────────────────────────────────────────────────────────────\n 13 13 │ \"source\": \"mcp-test\"\n 14 14 │ },\n 15 15 │ \"source_directory\": \"[SOURCE_DIRECTORY]\",\n 16 16 │ \"repo_origin_url\": null,\n 17 │- \"goal\": \"Run tests and report results\"\n 17 │+ \"goal_preview\": \"Run tests and report results\",\n 18 │+ \"goal_truncated\": false\n 18 19 │ }\n 19 20 │ ],\n 20 21 │ \"next_cursor\": null\n 21 22 │ }\n ────────────┴───────────────────────────────────────────────────────────────────\n To update snapshots run `cargo insta review`\n Stopped on the first failure. Run `cargo insta test` to run all snapshots.\n test cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth ... FAILED\n\n failures:\n\n failures:\n cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth\n\n test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 467 filtered out; finished in 0.22s\n\n stderr ───\n\n thread 'cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth' (64070) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/insta-1.46.3/src/runtime.rs:719:13:\n snapshot assertion for 'mcp_create_and_search_manage_real_runs_with_cli_auth' failed in line 554\n note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace\n\n Cancelling due to test failure: 7 tests still running\n FAIL [ 0.046s] ( 726/5480) fabro-cli::it cmd::mcp::mcp_search_includes_archived_runs_by_default\n stdout ───\n\n running 1 test\n test cmd::mcp::mcp_search_includes_archived_runs_by_default ... FAILED\n\n failures:\n\n failures:\n cmd::mcp::mcp_search_includes_archived_runs_by_default\n\n test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 467 filtered out; finished in 0.03s\n\n stderr ───\n\n thread 'cmd::mcp::mcp_search_includes_archived_runs_by_default' (64521) panicked at lib/crates/fabro-cli/tests/it/cmd/mcp.rs:823:5:\n assertion `left == right` failed\n left: 1\n right: 2\n note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace\n\n────────────\n Summary [ 4.956s] 730/5480 tests run: 728 passed, 2 failed, 182 skipped\n FAIL [ 0.231s] ( 723/5480) fabro-cli::it cmd::mcp::mcp_create_and_search_manage_real_runs_with_cli_auth\n FAIL [ 0.046s] ( 726/5480) fabro-cli::it cmd::mcp::mcp_search_includes_archived_runs_by_default\nwarning: 4750/5480 tests were not run due to test failure (run with --no-fail-fast to run all tests, or run with --max-fail)\nerror: test run failed\n",
|
|
"timestamp": "2026-05-11T21:19:47.995888Z"
|
|
},
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": {
|
|
"script": "ulimit -n 4096 && cargo nextest run --cargo-quiet --workspace --status-level fail 2>&1",
|
|
"command": "exec 2>&1\nulimit -n 4096 && cargo nextest run --cargo-quiet --workspace --status-level fail 2>&1",
|
|
"language": "shell"
|
|
},
|
|
"script_timing": {
|
|
"output": "blob://sha256/fa86112879510032d396ab50735eae1462c48eaa2a60c8cc1ca3be734daf042b",
|
|
"exit_code": 100,
|
|
"duration_ms": 148067,
|
|
"termination": "exited",
|
|
"output_bytes": 8580,
|
|
"live_streaming": true
|
|
},
|
|
"parallel_results": null,
|
|
"output": null,
|
|
"output_bytes": 8580,
|
|
"live_streaming": true,
|
|
"termination": "exited",
|
|
"started_at": "2026-05-11T21:17:19.923444Z",
|
|
"handler": "command",
|
|
"duration_ms": 148073,
|
|
"usage": {
|
|
"input_tokens": 0,
|
|
"output_tokens": 0,
|
|
"total_tokens": 0,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 0,
|
|
"cache_write_tokens": 0
|
|
},
|
|
"state": "failed"
|
|
},
|
|
"compile_rust@1": {
|
|
"first_event_seq": 30,
|
|
"prompt": null,
|
|
"response": null,
|
|
"completion": {
|
|
"outcome": "succeeded",
|
|
"notes": "Script completed: cargo check -q --workspace 2>&1",
|
|
"failure_reason": null,
|
|
"timestamp": "2026-05-11T21:14:08.362516Z"
|
|
},
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": {
|
|
"script": "cargo check -q --workspace 2>&1",
|
|
"command": "exec 2>&1\ncargo check -q --workspace 2>&1",
|
|
"language": "shell"
|
|
},
|
|
"script_timing": {
|
|
"output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126",
|
|
"exit_code": 0,
|
|
"duration_ms": 188513,
|
|
"termination": "exited",
|
|
"output_bytes": 0,
|
|
"live_streaming": false
|
|
},
|
|
"parallel_results": null,
|
|
"output": null,
|
|
"output_bytes": 0,
|
|
"live_streaming": false,
|
|
"termination": "exited",
|
|
"started_at": "2026-05-11T21:10:59.830369Z",
|
|
"handler": "command",
|
|
"duration_ms": 188530,
|
|
"usage": {
|
|
"input_tokens": 0,
|
|
"output_tokens": 0,
|
|
"total_tokens": 0,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 0,
|
|
"cache_write_tokens": 0
|
|
},
|
|
"state": "succeeded"
|
|
},
|
|
"lint_rust@1": {
|
|
"first_event_seq": 50,
|
|
"prompt": null,
|
|
"response": null,
|
|
"completion": {
|
|
"outcome": "succeeded",
|
|
"notes": "Script completed: cargo +nightly-2026-04-14 fmt --check --all 2>&1 && cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
|
|
"failure_reason": null,
|
|
"timestamp": "2026-05-11T21:17:12.696226Z"
|
|
},
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": {
|
|
"script": "cargo +nightly-2026-04-14 fmt --check --all 2>&1 && cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
|
|
"command": "exec 2>&1\ncargo +nightly-2026-04-14 fmt --check --all 2>&1 && cargo +nightly-2026-04-14 clippy -q --workspace --all-targets -- -D warnings 2>&1",
|
|
"language": "shell"
|
|
},
|
|
"script_timing": {
|
|
"output": "blob://sha256/12ae32cb1ec02d01eda3581b127c1fee3b0dc53572ed6baf239721a03d82e126",
|
|
"exit_code": 0,
|
|
"duration_ms": 161110,
|
|
"termination": "exited",
|
|
"output_bytes": 0,
|
|
"live_streaming": false
|
|
},
|
|
"parallel_results": null,
|
|
"output": null,
|
|
"output_bytes": 0,
|
|
"live_streaming": false,
|
|
"termination": "exited",
|
|
"started_at": "2026-05-11T21:14:31.578241Z",
|
|
"handler": "command",
|
|
"duration_ms": 161116,
|
|
"usage": {
|
|
"input_tokens": 0,
|
|
"output_tokens": 0,
|
|
"total_tokens": 0,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 0,
|
|
"cache_write_tokens": 0
|
|
},
|
|
"state": "succeeded"
|
|
}
|
|
}
|
|
} |