Emit bounded SCV reports
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
lib/openagents/scv/executor/open_code.ex -
added
lib/openagents/scv/open_code_report.ex -
modified
lib/openagents/scv/worker.ex -
modified
test/openagents/scv/open_code_executor_test.exs -
added
test/openagents/scv/open_code_report_test.exs
Diff
5 files changed, +168 -11
lib/openagents/scv/executor/open_code.ex modified +30 -9
@@ -9,6 +9,7 @@ defmodule OpenAgents.SCV.Executor.OpenCode do
| 9 | 9 |
|
| 10 | 10 |
|
| 11 | 11 |
|
| 12 |
|
|
| 12 | 13 |
|
| 13 | 14 |
|
| 14 | 15 |
|
@@ -239,6 +240,7 @@ defmodule OpenAgents.SCV.Executor.OpenCode do
| 239 | 240 |
|
| 240 | 241 |
|
| 241 | 242 |
|
| 243 |
|
|
| 242 | 244 |
|
| 243 | 245 |
|
| 244 | 246 |
|
@@ -273,6 +275,7 @@ defmodule OpenAgents.SCV.Executor.OpenCode do
| 273 | 275 |
|
| 274 | 276 |
|
| 275 | 277 |
|
| 278 |
|
|
| 276 | 279 |
|
| 277 | 280 |
|
| 278 | 281 |
|
@@ -404,20 +407,27 @@ defmodule OpenAgents.SCV.Executor.OpenCode do
| 404 | 407 |
|
| 405 | 408 |
|
| 406 | 409 |
|
| 407 |
|
|
| 408 |
|
|
| 410 |
|
|
| 411 |
|
|
| 409 | 412 |
|
| 410 | 413 |
|
| 411 | 414 |
|
| 412 |
|
|
| 415 |
|
|
| 413 | 416 |
|
| 414 | 417 |
|
| 415 |
|
|
| 418 |
|
|
| 416 | 419 |
|
| 417 | 420 |
|
| 418 | 421 |
|
| 419 |
|
|
| 420 |
|
|
| 422 |
|
|
| 423 |
|
|
| 424 |
|
|
| 425 |
|
|
| 426 |
|
|
| 427 |
|
|
| 428 |
|
|
| 429 |
|
|
| 430 |
|
|
| 421 | 431 |
|
| 422 | 432 |
|
| 423 | 433 |
|
@@ -430,6 +440,7 @@ defmodule OpenAgents.SCV.Executor.OpenCode do
| 430 | 440 |
|
| 431 | 441 |
|
| 432 | 442 |
|
| 443 |
|
|
| 433 | 444 |
|
| 434 | 445 |
|
| 435 | 446 |
|
@@ -437,18 +448,27 @@ defmodule OpenAgents.SCV.Executor.OpenCode do
| 437 | 448 |
|
| 438 | 449 |
|
| 439 | 450 |
|
| 440 |
|
|
| 451 |
|
|
| 452 |
|
|
| 441 | 453 |
|
| 442 |
|
|
| 454 |
|
|
| 443 | 455 |
|
| 444 | 456 |
|
| 445 | 457 |
|
| 446 |
|
|
| 458 |
|
|
| 459 |
|
|
| 460 |
|
|
| 461 |
|
|
| 462 |
|
|
| 463 |
|
|
| 447 | 464 |
|
| 448 | 465 |
|
| 449 | 466 |
|
| 450 | 467 |
|
| 451 | 468 |
|
| 469 |
|
|
| 470 |
|
|
| 471 |
|
|
| 452 | 472 |
|
| 453 | 473 |
|
| 454 | 474 |
|
@@ -578,6 +598,7 @@ defmodule OpenAgents.SCV.Executor.OpenCode do
| 578 | 598 |
|
| 579 | 599 |
|
| 580 | 600 |
|
| 601 |
|
|
| 581 | 602 |
|
| 582 | 603 |
|
| 583 | 604 |
|
lib/openagents/scv/open_code_report.ex added +81
@@ -0,0 +1,81 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
|
lib/openagents/scv/worker.ex modified +2 -1
@@ -201,7 +201,8 @@ defmodule OpenAgents.SCV.Worker do
| 201 | 201 |
|
| 202 | 202 |
|
| 203 | 203 |
|
| 204 |
|
|
| 204 |
|
|
| 205 |
|
|
| 205 | 206 |
|
| 206 | 207 |
|
| 207 | 208 |
|
test/openagents/scv/open_code_executor_test.exs modified +9 -1
@@ -55,6 +55,13 @@ defmodule OpenAgents.SCV.OpenCodeExecutorTest do
| 55 | 55 |
|
| 56 | 56 |
|
| 57 | 57 |
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 58 | 65 |
|
| 59 | 66 |
|
| 60 | 67 |
|
@@ -72,6 +79,7 @@ defmodule OpenAgents.SCV.OpenCodeExecutorTest do
| 72 | 79 |
|
| 73 | 80 |
|
| 74 | 81 |
|
| 82 |
|
|
| 75 | 83 |
|
| 76 | 84 |
|
| 77 | 85 |
|
@@ -186,7 +194,7 @@ defmodule OpenAgents.SCV.OpenCodeExecutorTest do
| 186 | 194 |
|
| 187 | 195 |
|
| 188 | 196 |
|
| 189 |
|
|
| 197 |
|
|
| 190 | 198 |
|
| 191 | 199 |
|
| 192 | 200 |
|
test/openagents/scv/open_code_report_test.exs added +46
@@ -0,0 +1,46 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|