You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🤖 fix: build dist/ before running terminal-bench (#513)
## Problem
PR #507 added `dist/` to the terminal-bench archive include paths to fix
worker crashes. However, the workflow wasn't building `dist/` before
running the benchmark, causing all tasks to fail immediately with:
```
Error running agent for task <name>: Required file /home/runner/work/cmux/cmux/dist missing
```
## Solution
Add `make build` step before `make benchmark-terminal` in the workflow.
This ensures:
- `dist/` directory exists
- Compiled JavaScript including worker files are present
- Archive creation succeeds
## Testing
Verified with workflow run #19140594821 which successfully completed the
modernize-fortran-build task:
- Task resolved: ✅ true
- Agent ran successfully (not just immediate exit)
- No worker crashes
_Generated with `cmux`_
0 commit comments