From 09e55e4321aaed1a2a01dc83153b915673d027bc Mon Sep 17 00:00:00 2001 From: Theodore Li Date: Tue, 21 Jul 2026 16:53:58 -0700 Subject: [PATCH] fix(ci): run Build App on the larger runner in GitHub mode --- .github/workflows/test-build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index d96fd4987ad..ed348a41446 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -194,9 +194,11 @@ jobs: # harmless), but the Turbo cache gets its own key: with a shared key, only # the last committer's new entries survive each run, so the test and build # Turbo entries would evict each other nondeterministically. + # Same next build as the app image, so it needs the same larger runner in + # GitHub mode: it peaks ~21.9 GB and SIGKILLs on the free 16 GB ones. build: name: Build App - runs-on: ${{ (vars.CI_PROVIDER == '' || vars.CI_PROVIDER == 'blacksmith') && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-latest' }} + runs-on: ${{ (vars.CI_PROVIDER == '' || vars.CI_PROVIDER == 'blacksmith') && 'blacksmith-8vcpu-ubuntu-2404' || 'linux-x64-8-core' }} timeout-minutes: 15 steps: