Fixes linker error on Linux where yaze_gfx_debug.a (performance_dashboard.cc) was calling AtlasRenderer::Get() and AtlasRenderer::GetStats() but wasn't linking against yaze_gfx_render which contains atlas_renderer.cc. Root cause: yaze_gfx_debug was only linking to yaze_gfx_types and yaze_gfx_resource, missing the yaze_gfx_render dependency. This also fixes the undefined reference errors for HttpServer methods which were already properly included in the agent.cmake source list. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
1.3 KiB
Markdown
31 lines
1.3 KiB
Markdown
# Agent Helper Scripts
|
|
|
|
| Script | Description |
|
|
|--------|-------------|
|
|
| `run-gh-workflow.sh` | Wrapper for `gh workflow run`, prints the run URL for easy tracking. |
|
|
| `smoke-build.sh` | Runs `cmake --preset` configure/build in place and reports timing. |
|
|
| `run-tests.sh` | Configures the preset (if needed), builds `yaze_test`, and runs `ctest` with optional args. |
|
|
| `test-http-api.sh` | Polls the HTTP API `/api/v1/health` endpoint using curl (defaults to localhost:8080). |
|
|
| `windows-smoke-build.ps1` | PowerShell variant of the smoke build helper for Visual Studio/Ninja presets on Windows. |
|
|
|
|
Usage examples:
|
|
```bash
|
|
# Trigger CI workflow with artifacts and HTTP API tests enabled
|
|
scripts/agents/run-gh-workflow.sh ci.yml --ref develop upload_artifacts=true enable_http_api_tests=true
|
|
|
|
# Smoke build mac-ai preset
|
|
scripts/agents/smoke-build.sh mac-ai
|
|
|
|
# Build & run tests for mac-dbg preset with verbose ctest output
|
|
scripts/agents/run-tests.sh mac-dbg --output-on-failure
|
|
|
|
# Check HTTP API health (defaults to localhost:8080)
|
|
scripts/agents/test-http-api.sh
|
|
|
|
# Windows smoke build using PowerShell
|
|
pwsh -File scripts/agents/windows-smoke-build.ps1 -Preset win-ai -Target z3ed
|
|
```
|
|
|
|
When invoking these scripts, log the results on the coordination board so other agents know which
|
|
workflows/builds were triggered and where to find artifacts/logs.
|