fix(1fcc-5fe2): emit structured local escalation in _phase_resolve_threads when _LLM_DISPATCH_CMD unset #79
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ticket-perf-regression | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'plugins/dso/scripts/ticket-lib-api.sh' | |
| - 'tests/perf/**' | |
| - 'tests/scripts/test-ticket-perf-regression.sh' | |
| - 'tests/scripts/benchmark-sprint-workflow.sh' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'plugins/dso/scripts/ticket-lib-api.sh' | |
| - 'tests/perf/**' | |
| - 'tests/scripts/test-ticket-perf-regression.sh' | |
| - 'tests/scripts/benchmark-sprint-workflow.sh' | |
| jobs: | |
| perf-regression: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install hyperfine | |
| run: | | |
| curl -LO https://github.com/sharkdp/hyperfine/releases/download/v1.18.0/hyperfine_1.18.0_amd64.deb | |
| sudo dpkg -i hyperfine_1.18.0_amd64.deb | |
| - name: Run per-op regression suite | |
| run: bash tests/scripts/test-ticket-perf-regression.sh | |
| - name: Run aggregate workflow benchmark | |
| run: | | |
| if [ -f tests/scripts/benchmark-sprint-workflow.sh ]; then | |
| bash tests/scripts/benchmark-sprint-workflow.sh | |
| else | |
| echo "benchmark-sprint-workflow.sh not yet present — skipping" | |
| fi |