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
feat: add support for downloading history logs via dlog
Extends the `dlog` command to handle Redis LIST keys (history_* and
failed_tests*) in addition to gzipped string logs. Also adds `yarn ci`
alias for accessing ci.sh from yarn-project and updates agent docs.
Co-Authored-By: Claude Opus 4.5 <[email protected]>
Never use the `Fetch` tool or `curl` for downloading.
78
+
77
79
### Step 3: Check for History URL
78
80
79
81
Look in the first 20 lines for a `History:` URL:
80
82
```bash
81
83
head -20 /tmp/<hash>.log | grep -i "history"
82
84
```
83
85
84
-
If found, this can be used to find successful runs for comparison.
86
+
If found (e.g., `http://ci.aztec-labs.com/list/history_e3d65d7f0d7a03b5_next`), this can be used to find successful runs for comparison.
87
+
88
+
**To download history:**
89
+
```bash
90
+
# Extract the key from the URL (everything after /list/)
91
+
yarn ci dlog history_e3d65d7f0d7a03b5_next > /tmp/history_e3d65d7f0d7a03b5_next.log 2>&1
92
+
```
93
+
94
+
The history log contains timestamped entries showing PASSED/FAILED/FLAKED runs with commit info. Use this to find a recent successful run's hash for comparison.
0 commit comments