Skip to content

Commit ec2baa1

Browse files
committed
fix: make contextbench recovery workflow valid
1 parent 12834f1 commit ec2baa1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/contextbench-ci-recovery.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
runs-on: ubuntu-latest
2323
timeout-minutes: 360
2424
env:
25-
CI_READINESS_ROOT: ${{ runner.temp }}/contextbench-readiness
26-
TASK_PAYLOADS: ${{ runner.temp }}/contextbench-readiness/task-payloads.json
27-
CHECKOUT_ROOT: ${{ runner.temp }}/contextbench-checkouts
25+
CI_READINESS_ROOT: /tmp/contextbench-readiness
26+
TASK_PAYLOADS: /tmp/contextbench-readiness/task-payloads.json
27+
CHECKOUT_ROOT: /tmp/contextbench-checkouts
2828
CBM_VERSION: ${{ github.event.inputs.codebase_memory_version || 'v0.6.1' }}
2929
MAX_TASKS: ${{ github.event.inputs.max_tasks || '3' }}
3030
steps:
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Run codebase-memory-mcp first3 readiness with official evaluator
6969
env:
70-
CBM_BIN: ${{ runner.temp }}/contextbench-readiness/tool/codebase-memory-mcp
70+
CBM_BIN: /tmp/contextbench-readiness/tool/codebase-memory-mcp
7171
run: |
7272
cat > "$CI_READINESS_ROOT/codebase-memory-first3-readiness.mjs" <<'NODE'
7373
import { spawnSync } from 'node:child_process';
@@ -252,5 +252,5 @@ jobs:
252252
uses: actions/upload-artifact@v4
253253
with:
254254
name: contextbench-codebase-memory-first3-readiness
255-
path: ${{ runner.temp }}/contextbench-readiness
255+
path: /tmp/contextbench-readiness
256256
retention-days: 14

0 commit comments

Comments
 (0)