milestone 33: contract closure — samples, file-authority enumeration, dead code, bundle ceiling
Gates / frontend (push) Successful in 1m34s
Gates / test (push) Successful in 2m3s
Gates / test-aarch64 (push) Failing after 3h13m33s
Gates / package (push) Successful in 5m20s
Gates / container (push) Successful in 15s
CI / gates (push) Failing after 6h30m45s

This commit is contained in:
2026-08-22 23:31:37 +02:00
parent 5da4652e89
commit cc23c97218
49 changed files with 397 additions and 113 deletions
+3 -3
View File
@@ -54,7 +54,7 @@ fn toInput(body: Body) union(enum) { input: rules_repo.RuleInput, fail: Failure
// decisions
// ---------------------------------------------------------------------------
pub fn applyCreate(
fn applyCreate(
state: *server.WebState,
io: std.Io,
arena: Allocator,
@@ -74,7 +74,7 @@ pub fn applyCreate(
return .{ .id = id };
}
pub fn applyUpdate(
fn applyUpdate(
state: *server.WebState,
io: std.Io,
arena: Allocator,
@@ -94,7 +94,7 @@ pub fn applyUpdate(
return mutations.reload(state, io);
}
pub fn applyDelete(state: *server.WebState, io: std.Io, id: i64) ?Failure {
fn applyDelete(state: *server.WebState, io: std.Io, id: i64) ?Failure {
const database = mutations.requireConfigDb(state) catch return mutations.no_config_db;
state.config_lock.lockUncancelable(io);