mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-14 23:22:51 +00:00
parent
3855a63f2f
commit
0cf340edc1
4 changed files with 384 additions and 25 deletions
387
run.json
387
run.json
File diff suppressed because one or more lines are too long
11
stages/009-fixup@1/response.md
Normal file
11
stages/009-fixup@1/response.md
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Summary:
|
||||
|
||||
**Failure cause:** Transient infrastructure issue. The verify script chains the full debug pipeline (`cargo nextest run --workspace --profile ci`, which produced ~17 GB of artifacts in `target/debug/`) immediately followed by a release build (`cargo dev build -- -p fabro-cli --release`). The accumulated debug + in-progress release artifacts exceeded the 20 GB overlay disk, causing `aws-lc-sys` C compilation to abort with "No space left on device" / SIGABRT.
|
||||
|
||||
**Resolution:** No code changes were required. All prior verify steps (fmt, clippy, nextest, docs check, bun typecheck/test) had already succeeded — the failure was strictly the final release build step running out of disk. After freeing space by removing `target/debug`, the release build completes cleanly:
|
||||
|
||||
- `cargo dev build -- -p fabro-cli --release` → `Finished release profile [optimized] target(s) in 4m 15s`
|
||||
- Produced `target/release/fabro` (≈111 MB)
|
||||
- Disk now at 28% used, leaving plenty of headroom
|
||||
|
||||
The next verify retry should succeed on a fresh sandbox where debug and release artifacts don't have to coexist mid-run, or with the same workaround if the orchestrator clears debug before the final release build.
|
||||
6
stages/009-fixup@1/status.json
Normal file
6
stages/009-fixup@1/status.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"outcome": "succeeded",
|
||||
"notes": "Stage completed: fixup",
|
||||
"failure_reason": null,
|
||||
"timestamp": "2026-06-04T23:37:47.097315Z"
|
||||
}
|
||||
5
stages/010-verify@2/script_invocation.json
Normal file
5
stages/010-verify@2/script_invocation.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"script": "git fetch origin main 2>&1 && git merge --no-edit --no-stat origin/main 2>&1 && cargo +nightly-2026-04-14 fmt --all 2>&1 && cargo dev docs refresh 2>&1 && cargo +nightly-2026-04-14 fmt --check --all 2>&1 && { command -v rg >/dev/null 2>&1 || { echo 'rg is required for verify'; exit 127; }; } && ! rg -n 'AuthMode::Disabled|RunAuthMethod|RunSubjectProvenance|\\bActorRef\\b|\\bActorKind\\b|AuthenticatedSubject|AuthenticatedService|AuthorizeRunScoped|AuthorizeRunBlob|AuthorizeStageArtifact|AuthorizeCommandLog|auth_method\\s*==\\s*\"disabled\"' lib/crates apps lib/packages docs/public/api-reference/fabro-api.yaml 2>&1 && cargo +nightly-2026-04-14 clippy --workspace --all-targets -- -D warnings 2>&1 && cargo nextest run --workspace --status-level slow --profile ci 2>&1 && cargo dev docs check 2>&1 && bun install --frozen-lockfile 2>&1 && (cd apps/fabro-web && bun run typecheck) 2>&1 && (cd apps/fabro-web && bun run test) 2>&1 && (cd lib/packages/fabro-api-client && bun run typecheck) 2>&1 && cargo dev build -- -p fabro-cli --release 2>&1",
|
||||
"command": "exec 2>&1\ngit fetch origin main 2>&1 && git merge --no-edit --no-stat origin/main 2>&1 && cargo +nightly-2026-04-14 fmt --all 2>&1 && cargo dev docs refresh 2>&1 && cargo +nightly-2026-04-14 fmt --check --all 2>&1 && { command -v rg >/dev/null 2>&1 || { echo 'rg is required for verify'; exit 127; }; } && ! rg -n 'AuthMode::Disabled|RunAuthMethod|RunSubjectProvenance|\\bActorRef\\b|\\bActorKind\\b|AuthenticatedSubject|AuthenticatedService|AuthorizeRunScoped|AuthorizeRunBlob|AuthorizeStageArtifact|AuthorizeCommandLog|auth_method\\s*==\\s*\"disabled\"' lib/crates apps lib/packages docs/public/api-reference/fabro-api.yaml 2>&1 && cargo +nightly-2026-04-14 clippy --workspace --all-targets -- -D warnings 2>&1 && cargo nextest run --workspace --status-level slow --profile ci 2>&1 && cargo dev docs check 2>&1 && bun install --frozen-lockfile 2>&1 && (cd apps/fabro-web && bun run typecheck) 2>&1 && (cd apps/fabro-web && bun run test) 2>&1 && (cd lib/packages/fabro-api-client && bun run typecheck) 2>&1 && cargo dev build -- -p fabro-cli --release 2>&1",
|
||||
"language": "shell"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue