Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/l5-dogfood.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
env:
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
L5_KEEP_ARTIFACTS: '1'
# Default 180s is too tight for code-touching flows that spawn SWE
# (the full planning + SWE chain runs ~190s locally even on a clean
# path; v0.5.0-rc.2 had 3 flows fail because runs hit the 180s cap
# mid-SWE). 600s gives headroom without ballooning total CI time.
TMB_CLAUDE_TIMEOUT: '600'
run: bash tests/dogfood/run-l5.sh

- name: Upload trajectory dumps on failure
Expand Down
5 changes: 5 additions & 0 deletions tests/docker/release-canary.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ USER node
WORKDIR /plugin
ENV TMB_DEBUG_TRAJECTORY=1
ENV HOME=/home/node
# Default 180s is too tight for code-touching flows that spawn SWE
# (the full planning + SWE chain runs ~190s locally even on a clean path;
# v0.5.0-rc.2 had 3 flows fail because runs hit the 180s cap mid-SWE).
# 600s gives headroom without ballooning total CI time.
ENV TMB_CLAUDE_TIMEOUT=600

# The runner reads CLAUDE_CODE_OAUTH_TOKEN from env. BuildKit secrets are
# mounted at /run/secrets/<id>; uid=1000 makes the file readable by node.
Expand Down
Loading