Skip to content

Commit bc8d6ac

Browse files
committed
fix(ci): bump apt-get timeout 300→600 in nightly workflows (#125)
The 2026-06-18 nightly diff-fuzz run failed at the C++ build deps step with exit code 124. The job had been running ~5 minutes (16:49 → 16:54 UTC), which matches `timeout 300` exactly: ``` 16:49:29 Run timeout 300 sudo apt-get update + timeout 300 sudo apt-get install ... 16:54:09 Get:4 cmake-data (2155 kB) 16:54:26 Get:5 cmake amd64 (11.2 MB) 16:54:36 exit code 124 ``` The previous 10 nightly runs took 4:30~4:50 hours total, so the global job budget (`timeout-minutes: 355` + `timeout 340m` on the fuzz step) was nowhere near being hit. The failure is purely the apt step's per-command guard tripping during a slow Azure mirror cycle. Bump `timeout 300` → `600` on both `apt-get update` and `apt-get install` in nightly-diff-fuzz.yml and nightly-benchmark.yml (both have the identical idiom). 600s = 10 minutes is still a hard ceiling, just lenient enough to absorb the kind of mirror congestion the 06-18 run hit (cmake 11.2 MB alone took ~17s post-cmake-data, both combined ran over 5 minutes). Closes #125. Does not address #109 / #124 — those are a separate go-vs-cpp column/row-store divergence pattern that needs root-cause investigation beyond infra fixes.
1 parent 6471007 commit bc8d6ac

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/nightly-benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444

4545
- name: Install system deps
4646
run: |
47-
timeout 300 sudo apt-get update
48-
timeout 300 sudo apt-get install -y --no-install-recommends \
47+
timeout 600 sudo apt-get update
48+
timeout 600 sudo apt-get install -y --no-install-recommends \
4949
cmake build-essential libluajit-5.1-dev libcurl4-openssl-dev
5050
5151
- name: Install hey

.github/workflows/nightly-diff-fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949

5050
- name: Install C++ build deps
5151
run: |
52-
timeout 300 sudo apt-get update
53-
timeout 300 sudo apt-get install -y --no-install-recommends \
52+
timeout 600 sudo apt-get update
53+
timeout 600 sudo apt-get install -y --no-install-recommends \
5454
cmake ninja-build g++-13 libluajit-5.1-dev libcurl4-openssl-dev
5555
5656
- name: Build Go binary

0 commit comments

Comments
 (0)