fix(ci): run Build App on the larger runner in GitHub mode (#5826)

This commit is contained in:
Theodore Li
2026-07-21 17:07:05 -07:00
committed by GitHub
parent 4b979780d2
commit e9898ea24d
+3 -1
View File
@@ -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: