Add runner diagnostics and rebalance source lanes
Some checks failed
CICD / Build and Publish CICD Base Image (push) Waiting to run
CICD / Build and Push CICD Image (push) Has been cancelled
CICD / Backend Tests (push) Has been cancelled
CICD / Pre-commit Checks (push) Has been cancelled
CICD / Frontend Tests (push) Has been cancelled
CICD / Backend Doctests (push) Has been cancelled
CICD / Build and Publish Runtime Images (push) Has been cancelled
CICD / Runtime Black-Box Integration Tests (push) Has been cancelled
CICD / End-to-End Tests (push) Has been cancelled

This commit is contained in:
copilotcoder
2026-07-07 08:14:10 -04:00
parent 71b9dda8a4
commit 8619e00a17
2 changed files with 8 additions and 4 deletions

View File

@@ -354,8 +354,9 @@ jobs:
precommit-tests:
name: Pre-commit Checks
# Use ubuntu-act runner pool for consistent availability.
runs-on: ubuntu-act
# 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
timeout-minutes: 30
needs: build_cicd
steps:
@@ -400,8 +401,9 @@ jobs:
frontend-tests:
name: Frontend Tests
# Use ubuntu-act runner pool for consistent availability.
runs-on: ubuntu-act
# 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
timeout-minutes: 25
needs: build_cicd
steps:

View File

@@ -154,6 +154,8 @@ reset = [
{shell = "cd frontend && rm -rf node_modules 2>/dev/null || true"},
"deps-install"
]
runner-diagnostics = {shell = "xonsh ./scripts/gitea-actions/collect_runner_diagnostics.xsh", help = "Collect recent runner, docker, and system diagnostics from all known runner hosts"}
runner-discover = {shell = "xonsh ./scripts/gitea-actions/discover-runners.xsh --batch", help = "Collect runner inventory, labels, and baseline health from all known runner hosts"}
# === Development Setup (New Developer Onboarding) ===
setup = [
"deps-install",