Commit f02ea79
ci(adcp): add storyboard CI job for seller_agent.py compliance checks (#309)
* ci(adcp): add storyboard CI job for seller_agent.py compliance checks
Adds a non-blocking storyboard CI job (continue-on-error: true) that
boots examples/seller_agent.py and runs the @adcp/client storyboard
suite on every PR. Uses curl-based HTTP readiness polling instead of
lsof, bounds the wait with a 30s timeout + PID-alive-check, and guards
json.load with a file-existence check. Artifact always uploaded.
Non-blocking until seller-agent content gaps in #304 are resolved.
Closes #305
https://claude.ai/code/session_01SSje6ebBHD85TWdQbEig9m
* ci(adcp): fix storyboard CI job after pre-PR review
- overall_status check: 'pass' → 'passing' (actual runner enum value)
- Assert step: dump full JSON on failure instead of d[k] (avoids KeyError)
- Artifact upload: add if-no-files-found: warn and run_attempt suffix
- Comment: document @latest intent and 405-ok readiness check rationale
https://claude.ai/code/session_01SSje6ebBHD85TWdQbEig9m
* ci(adcp): use 127.0.0.1 instead of localhost for storyboard probes
Acting on dx-expert review of this PR:
On dual-stack hosts (and Ubuntu runners since actions/runner 2.300+),
``localhost`` resolves to ``::1`` first. uvicorn's default bind is
IPv4-only, so the readiness probe and runner invocation each eat a
connection-refused round-trip on ``::1`` before falling back to
``127.0.0.1``. Curl falls back automatically (so it still works), but
it's wasteful and slightly fragile.
Pin both call sites to ``127.0.0.1`` directly. The agent's bind address
is unchanged (still ``0.0.0.0`` via ``ADCP_HOST`` default in #296);
only the client-side address resolution changes.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude <noreply@anthropic.com>1 parent 04966d7 commit f02ea79
1 file changed
Lines changed: 86 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
330 | 330 | | |
331 | 331 | | |
332 | 332 | | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | + | |
| 358 | + | |
| 359 | + | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
| 363 | + | |
| 364 | + | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
| 387 | + | |
| 388 | + | |
| 389 | + | |
| 390 | + | |
| 391 | + | |
| 392 | + | |
| 393 | + | |
| 394 | + | |
| 395 | + | |
| 396 | + | |
| 397 | + | |
| 398 | + | |
| 399 | + | |
| 400 | + | |
| 401 | + | |
| 402 | + | |
| 403 | + | |
| 404 | + | |
| 405 | + | |
| 406 | + | |
| 407 | + | |
| 408 | + | |
| 409 | + | |
| 410 | + | |
| 411 | + | |
| 412 | + | |
| 413 | + | |
| 414 | + | |
| 415 | + | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
0 commit comments