Skip to content

Commit 853a074

Browse files
committed
🤖 fix: build dist/ before running terminal-bench
PR #507 added dist/ to the terminal-bench archive include paths, but the workflow wasn't building dist/ before running the benchmark. This caused all tasks to fail immediately with "Required file .../dist missing". Now runs `make build` before `make benchmark-terminal` to ensure dist/ exists and contains the compiled worker files.
1 parent 93ceedf commit 853a074

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/terminal-bench.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ jobs:
9797
- name: Generate version file
9898
run: ./scripts/generate-version.sh
9999

100+
- name: Build dist/
101+
run: make build
102+
100103
- name: Run Terminal-Bench
101104
run: make benchmark-terminal
102105
env:

0 commit comments

Comments
 (0)