mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
105 lines
No EOL
8.6 KiB
JSON
105 lines
No EOL
8.6 KiB
JSON
{
|
|
"timestamp": "2026-04-01T14:32:45.872601Z",
|
|
"current_node": "test_rust",
|
|
"completed_nodes": [
|
|
"start",
|
|
"toolchain",
|
|
"compile_rust",
|
|
"compile_typescript",
|
|
"lint_rust",
|
|
"test_rust"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"thread.compile_rust.current_node": "compile_typescript",
|
|
"internal.run_id": "01KN4Q03D39SDN1S4FVSK1NK4A",
|
|
"internal.retry_count.compile_typescript": 0,
|
|
"current.preamble": "Goal: Verify the sandbox can lint and test the project\n\n## Completed stages\n- **toolchain**: success\n - Script: `rustc --version && cargo --version && bun --version 2>&1`\n - Stdout:\n ```\n rustc 1.94.0 (4a4ef493e 2026-03-02)\n cargo 1.94.0 (85eff7c80 2026-01-15)\n 1.3.10\n ```\n - Stderr: (empty)\n- **compile_rust**: success\n - Script: `cargo check -q --workspace 2>&1`\n - Stdout: (empty)\n - Stderr: (empty)\n- **compile_typescript**: success\n - Script: `cd apps/fabro-web && bun install && bun run typecheck 2>&1`\n - Stdout:\n ```\n (7 lines omitted)\n + @types/react-dom@19.2.3\n + tailwindcss@4.2.1\n + typescript@5.9.3\n + vite@7.3.1\n + vite-tsconfig-paths@5.1.4\n + @dnd-kit/core@6.3.1\n + @dnd-kit/sortable@10.0.0\n + @dnd-kit/utilities@3.2.2\n + @headlessui/react@2.2.9\n + @heroicons/react@2.2.0\n + @pierre/diffs@1.0.11\n + @react-router/node@7.12.0\n + @react-router/serve@7.12.0\n + @viz-js/viz@3.24.0\n + arctic@3.7.0\n + better-sqlite3@12.6.2\n + isbot@5.1.35\n + jose@6.1.3\n + react@19.2.4\n + react-dom@19.2.4\n + react-router@7.12.0\n + smol-toml@1.6.0\n \n 1400 packages installed [67.95s]\n $ react-router typegen && tsc\n ```\n - Stderr: (empty)\n- **lint_rust**: success\n - Script: `cargo fmt --check --all 2>&1 && cargo clippy -q --workspace -- -D warnings 2>&1`\n - Stdout: (empty)\n - Stderr: (empty)\n",
|
|
"thread.start.current_node": "toolchain",
|
|
"internal.thread_id": "lint_rust",
|
|
"thread.lint_rust.current_node": "test_rust",
|
|
"outcome": "fail",
|
|
"command.stderr": "",
|
|
"internal.fidelity": "compact",
|
|
"failure_signature": "test_rust|deterministic|script failed with exit code: <n> ## stdout error[e0433]: failed to resolve: use of undeclared type `arc` --> lib/crates/fabro-server/tests/it/api.rs:<n>:<n> | <n> | key: arc::new(decoding_key),| ^^^ use of undeclared type `arc` | help: con",
|
|
"internal.retry_count.compile_rust": 0,
|
|
"internal.node_visit_count": 1,
|
|
"current_node": "test_rust",
|
|
"internal.retry_count.start": 0,
|
|
"internal.retry_count.lint_rust": 0,
|
|
"thread.toolchain.current_node": "compile_rust",
|
|
"internal.retry_count.toolchain": 0,
|
|
"thread.compile_typescript.current_node": "lint_rust",
|
|
"command.output": "error[E0433]: failed to resolve: use of undeclared type `Arc`\n --> lib/crates/fabro-server/tests/it/api.rs:389:22\n |\n389 | key: Arc::new(decoding_key),\n | ^^^ use of undeclared type `Arc`\n |\nhelp: consider importing this struct\n |\n 14 + use std::sync::Arc;\n |\n\nerror[E0433]: failed to resolve: use of undeclared type `Arc`\n --> lib/crates/fabro-server/tests/it/api.rs:390:29\n |\n390 | validation: Arc::new(fabro_server::jwt_auth::jwt_validation()),\n | ^^^ use of undeclared type `Arc`\n |\nhelp: consider importing this struct\n |\n 14 + use std::sync::Arc;\n |\n\nFor more information about this error, try `rustc --explain E0433`.\nerror: could not compile `fabro-server` (test \"it\") due to 2 previous errors\nerror: command `/root/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/cargo test --no-run --message-format json-render-diagnostics --workspace --quiet` exited with code 101\n",
|
|
"failure_class": "deterministic",
|
|
"graph.rankdir": "LR",
|
|
"graph.goal": "Verify the sandbox can lint and test the project",
|
|
"internal.retry_count.test_rust": 0
|
|
},
|
|
"node_outcomes": {
|
|
"compile_rust": {
|
|
"status": "success",
|
|
"context_updates": {
|
|
"command.stderr": "",
|
|
"command.output": ""
|
|
},
|
|
"notes": "Script completed: cargo check -q --workspace 2>&1",
|
|
"usage": null
|
|
},
|
|
"toolchain": {
|
|
"status": "success",
|
|
"context_updates": {
|
|
"command.stderr": "",
|
|
"command.output": "rustc 1.94.0 (4a4ef493e 2026-03-02)\ncargo 1.94.0 (85eff7c80 2026-01-15)\n1.3.10\n"
|
|
},
|
|
"notes": "Script completed: rustc --version && cargo --version && bun --version 2>&1",
|
|
"usage": null
|
|
},
|
|
"lint_rust": {
|
|
"status": "success",
|
|
"context_updates": {
|
|
"command.stderr": "",
|
|
"command.output": ""
|
|
},
|
|
"notes": "Script completed: cargo fmt --check --all 2>&1 && cargo clippy -q --workspace -- -D warnings 2>&1",
|
|
"usage": null
|
|
},
|
|
"test_rust": {
|
|
"status": "fail",
|
|
"context_updates": {
|
|
"command.stderr": "",
|
|
"command.output": "error[E0433]: failed to resolve: use of undeclared type `Arc`\n --> lib/crates/fabro-server/tests/it/api.rs:389:22\n |\n389 | key: Arc::new(decoding_key),\n | ^^^ use of undeclared type `Arc`\n |\nhelp: consider importing this struct\n |\n 14 + use std::sync::Arc;\n |\n\nerror[E0433]: failed to resolve: use of undeclared type `Arc`\n --> lib/crates/fabro-server/tests/it/api.rs:390:29\n |\n390 | validation: Arc::new(fabro_server::jwt_auth::jwt_validation()),\n | ^^^ use of undeclared type `Arc`\n |\nhelp: consider importing this struct\n |\n 14 + use std::sync::Arc;\n |\n\nFor more information about this error, try `rustc --explain E0433`.\nerror: could not compile `fabro-server` (test \"it\") due to 2 previous errors\nerror: command `/root/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/cargo test --no-run --message-format json-render-diagnostics --workspace --quiet` exited with code 101\n"
|
|
},
|
|
"failure": {
|
|
"message": "Script failed with exit code: 101\n\n## stdout\nerror[E0433]: failed to resolve: use of undeclared type `Arc`\n --> lib/crates/fabro-server/tests/it/api.rs:389:22\n |\n389 | key: Arc::new(decoding_key),\n | ^^^ use of undeclared type `Arc`\n |\nhelp: consider importing this struct\n |\n 14 + use std::sync::Arc;\n |\n\nerror[E0433]: failed to resolve: use of undeclared type `Arc`\n --> lib/crates/fabro-server/tests/it/api.rs:390:29\n |\n390 | validation: Arc::new(fabro_server::jwt_auth::jwt_validation()),\n | ^^^ use of undeclared type `Arc`\n |\nhelp: consider importing this struct\n |\n 14 + use std::sync::Arc;\n |\n\nFor more information about this error, try `rustc --explain E0433`.\nerror: could not compile `fabro-server` (test \"it\") due to 2 previous errors\nerror: command `/root/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/cargo test --no-run --message-format json-render-diagnostics --workspace --quiet` exited with code 101\n",
|
|
"failure_class": "deterministic"
|
|
},
|
|
"usage": null
|
|
},
|
|
"compile_typescript": {
|
|
"status": "success",
|
|
"context_updates": {
|
|
"command.stderr": "",
|
|
"command.output": "bun install v1.3.10 (30e609e0)\n\n+ @react-router/dev@7.12.0\n+ @tailwindcss/vite@4.2.1\n+ @types/better-sqlite3@7.6.13\n+ @types/node@22.19.13\n+ @types/react@19.2.14\n+ @types/react-dom@19.2.3\n+ tailwindcss@4.2.1\n+ typescript@5.9.3\n+ vite@7.3.1\n+ vite-tsconfig-paths@5.1.4\n+ @dnd-kit/core@6.3.1\n+ @dnd-kit/sortable@10.0.0\n+ @dnd-kit/utilities@3.2.2\n+ @headlessui/react@2.2.9\n+ @heroicons/react@2.2.0\n+ @pierre/diffs@1.0.11\n+ @react-router/node@7.12.0\n+ @react-router/serve@7.12.0\n+ @viz-js/viz@3.24.0\n+ arctic@3.7.0\n+ better-sqlite3@12.6.2\n+ isbot@5.1.35\n+ jose@6.1.3\n+ react@19.2.4\n+ react-dom@19.2.4\n+ react-router@7.12.0\n+ smol-toml@1.6.0\n\n1400 packages installed [67.95s]\n$ react-router typegen && tsc\n"
|
|
},
|
|
"notes": "Script completed: cd apps/fabro-web && bun install && bun run typecheck 2>&1",
|
|
"usage": null
|
|
},
|
|
"start": {
|
|
"status": "success",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "exit",
|
|
"loop_failure_signatures": {
|
|
"test_rust|deterministic|script failed with exit code: <n> ## stdout error[e0433]: failed to resolve: use of undeclared type `arc` --> lib/crates/fabro-server/tests/it/api.rs:<n>:<n> | <n> | key: arc::new(decoding_key),| ^^^ use of undeclared type `arc` | help: con": 1
|
|
},
|
|
"node_visits": {
|
|
"toolchain": 1,
|
|
"compile_typescript": 1,
|
|
"test_rust": 1,
|
|
"start": 1,
|
|
"compile_rust": 1,
|
|
"lint_rust": 1
|
|
}
|
|
} |