Skip to content

Commit 14c2681

Browse files
ci: raise Build App timeout to 25 minutes
The build outgrew the 15-minute cap over the last two days of merges: 10m02 (c6acc62), then 14m44 after the folders/desktop/library batch (adc557a, 16s under the limit), then two consecutive timeouts on 7b1af41 after the outlook merge. Staging's own latest runs show the same signature (one cancelled). GitHub labels a job timeout "cancelled", which is why these read as cancellations.
1 parent 7b1af41 commit 14c2681

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/test-build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,11 @@ jobs:
222222
build:
223223
name: Build App
224224
runs-on: ${{ (vars.CI_PROVIDER == '' || vars.CI_PROVIDER == 'blacksmith') && 'blacksmith-16vcpu-ubuntu-2404' || 'linux-x64-8-core' }}
225-
timeout-minutes: 15
225+
# Build durations crossed 15 minutes as the app grew (10m02 on Jul 29 AM,
226+
# 14m44 after the folders/desktop/library merges, then two straight
227+
# timeouts) — GitHub reports a job timeout as "cancelled". 25 keeps
228+
# headroom without masking a genuine hang.
229+
timeout-minutes: 25
226230

227231
steps:
228232
- name: Checkout code

0 commit comments

Comments
 (0)