Use full runner pool for source test lanes
Some checks failed
CICD / Build and Publish CICD Base Image (push) Successful in 36s
CICD / Build and Push CICD Image (push) Successful in 23m4s
CICD / Backend Tests (push) Successful in 32s
CICD / Pre-commit Checks (push) Successful in 2m35s
CICD / Frontend Tests (push) Successful in 40s
CICD / Backend Doctests (push) Successful in 18s
CICD / Build and Publish Runtime Images (push) Failing after 5m51s
CICD / Runtime Black-Box Integration Tests (push) Has been skipped
CICD / End-to-End Tests (push) Has been skipped

This commit is contained in:
copilotcoder
2026-07-07 08:27:13 -04:00
parent d59217912d
commit 0ac6108fc7

View File

@@ -39,7 +39,7 @@ concurrency:
jobs:
publish-base:
name: Build and Publish CICD Base Image
runs-on: ubuntu-act
runs-on: ubuntu-act-8gb
timeout-minutes: 35
outputs:
base_hash: ${{ steps.base-state.outputs.base_hash }}
@@ -354,9 +354,8 @@ jobs:
precommit-tests:
name: Pre-commit Checks
# Pin one source-check lane to the 8GB pool so source checks can fan out
# across both runner pools instead of serializing behind a single label.
runs-on: ubuntu-act-8gb
# Source-level checks should be able to use the full ubuntu-act pool.
runs-on: ubuntu-act
timeout-minutes: 30
needs: build_cicd
steps:
@@ -401,9 +400,8 @@ jobs:
frontend-tests:
name: Frontend Tests
# Pin one source-check lane to the 8GB pool so source checks can fan out
# across both runner pools instead of serializing behind a single label.
runs-on: ubuntu-act-8gb
# Source-level checks should be able to use the full ubuntu-act pool.
runs-on: ubuntu-act
timeout-minutes: 25
needs: build_cicd
steps: