checkpoint

⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-05-24 14:25:31 -04:00
parent 5bd32312fd
commit 66d66cd98c
4 changed files with 415 additions and 108 deletions

470
run.json

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,42 @@
diff --git a/lib/crates/fabro-server/src/server.rs b/lib/crates/fabro-server/src/server.rs
index 81a8adeda..f97f8fda1 100644
--- a/lib/crates/fabro-server/src/server.rs
+++ b/lib/crates/fabro-server/src/server.rs
@@ -2832,8 +2832,8 @@ async fn finish_cancelled_run_before_execution(state: &Arc<AppState>, run_id: Ru
}
/// Reject the run before execution if its effective sandbox provider is
-/// disabled by server policy. Returns `true` when the run was failed.
-async fn fail_if_sandbox_provider_disabled(
+/// disabled by server policy. Returns `true` when the run was rejected.
+async fn reject_run_if_sandbox_provider_disabled(
state: &Arc<AppState>,
server_settings: &ServerSettings,
run_id: RunId,
@@ -2843,7 +2843,7 @@ async fn fail_if_sandbox_provider_disabled(
let Some(error) = run_manifest::sandbox_provider_policy_error(server_settings, provider) else {
return false;
};
- tracing::error!(run_id = %run_id, error = %error, "Sandbox provider disabled by server policy");
+ tracing::warn!(run_id = %run_id, error = %error, "Sandbox provider disabled by server policy");
fail_run_before_execution(state, run_id, FailureReason::LaunchFailed, error).await;
true
}
@@ -3597,7 +3597,7 @@ async fn execute_run_in_process(state: Arc<AppState>, run_id: RunId) {
finish_cancelled_run_before_execution(&state, run_id).await;
return;
}
- if fail_if_sandbox_provider_disabled(
+ if reject_run_if_sandbox_provider_disabled(
&state,
&server_settings,
run_id,
@@ -3831,7 +3831,7 @@ async fn execute_run_subprocess(state: Arc<AppState>, run_id: RunId) {
}
};
let agent_fabro_tools_enabled = run_state.spec.settings.run.agent.fabro_tools;
- if fail_if_sandbox_provider_disabled(
+ if reject_run_if_sandbox_provider_disabled(
&state,
&state.server_settings(),
run_id,

View file

@ -0,0 +1,6 @@
{
"outcome": "succeeded",
"notes": "Stage completed: simplify_gpt",
"failure_reason": null,
"timestamp": "2026-05-24T18:16:37.649624Z"
}

View 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"
}