mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
* fix(board): give Board Program explorers a nothing_to_propose exit Every propose_* verb requires at least one item, so an explorer that legitimately found nothing — Barfly with no worthwhile X conversations, Coroner with no autopsy subject — had no way to close its exploration task. It declined, called i_am_idle(), and the task stayed PENDING forever: the dispatcher re-matched it every tick and respawned the board agent (~$0.61 a spawn, ~3 per 5-minute respawn-breaker cooldown window, indefinitely), and BoardProgramEngine's one-open-cycle dedup wedged that whole program shut, since the ledger row only closes once its exploration task goes terminal. nothing_to_propose(task_id, reason) is the explicit exit. task_id is required rather than inferred: one explorer role owns several independently-cadenced programs (head_marketing owns six) and each assigns its exploration task to the same agent, so several are open at once by design and guessing "the caller's oldest" completes the WRONG cycle — stamping its reason onto an unrelated program's ledger while the task actually being worked stays wedged. Resolution validates the named task exists, carries a registered program source, is assigned to the caller, and is non-terminal, then gates on the program's declared explorer role from the registry, so a program registered later needs no edit here. The reason lands on board_program_cycles (migration 089) and renders into the next cycle's LEARN context, replacing a bare "proposed 0, approved 0" with why. That write runs in its own savepoint: it flushes on the same session as the completion, and a bare try/except around a same-session flush leaves the transaction pending-rollback, so a DB blip there would discard the completion at the post-response commit while the verb reported success. All fourteen exploration prompts offer the exit, pinned by a registry-parametrized test that fails when a future program is unwired. * ci: fire PR checks on slave-based PRs, not master alone All five gating workflows declared `pull_request: branches: [master]`, but every fleet PR targets slave — cell->root, root->slave, and the CEO's own. So `pull_request` never fired for any of them, and their only coverage was the `push` trigger, which is gated on branch PREFIX (feature/bug/chore/docs/hotfix). A branch named anything else got zero checks — not a red run, an absent one — and a PR with no required check present merges on a false green. PR #711 shipped that way on a `fix/` branch. Basing on the branch a PR merges INTO rather than what its head is named makes coverage independent of branch naming, so a non-conforming prefix can only ever cost the redundant push run, never the whole gate. The same five also omitted slave from `push` (ci.yml aside, which added it for the release gate's fail-closed CI read), so the panel suite, both CodeQL analyses, and the e2e smoke never ran on the trunk master is cut from. --------- Co-authored-by: Renn F <rennf93@users.noreply.github.com>
182 lines
6.6 KiB
YAML
182 lines
6.6 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
# The dev branch: the gated release manager's readiness sweep is
|
|
# fail-closed on the head rung's CI conclusion — no run reads as
|
|
# "unknown", which blocks every release proposal.
|
|
- slave
|
|
# Fleet task branches (GitService push/merge, roboco/services/git.py).
|
|
# A revision commit that lands on a PR's head via the merge API
|
|
# (squash-merging a subtask PR into a parent branch) doesn't reliably
|
|
# fire `pull_request`'s synchronize trigger for the PR that already
|
|
# has that branch as its head — proven live on PR #406, where two
|
|
# revision merges left CI/CodeQL absent (not red) while `push` and
|
|
# `pull_request_target` both fired for the same ref update. A real git
|
|
# push always fires `pull_request`; this redundant trigger (paired
|
|
# with the concurrency group below) closes the gap for merge-API
|
|
# revisions without double-running when both events land.
|
|
- 'feature/**'
|
|
- 'bug/**'
|
|
- 'chore/**'
|
|
- 'docs/**'
|
|
- 'hotfix/**'
|
|
paths:
|
|
- 'roboco/**'
|
|
- 'agents/**'
|
|
- 'alembic/**'
|
|
- 'tests/**'
|
|
- 'scripts/**'
|
|
- 'docker/**'
|
|
- 'docker-compose.yml'
|
|
- 'Makefile'
|
|
- 'pyproject.toml'
|
|
- 'uv.lock'
|
|
- 'alembic.ini'
|
|
- '.github/workflows/ci.yml'
|
|
# Slave carries docs/panel-only commits too; the release gate needs a
|
|
# verdict on every head, so cover what actually lands there.
|
|
- 'panel/**'
|
|
- 'CLAUDE.md'
|
|
- 'CHANGELOG.md'
|
|
- 'docs/**'
|
|
# `make quality`'s prose gate lints motion/**, so a motion-only commit
|
|
# can still turn the gate red — without this it fires no run and a PR
|
|
# merges on a false green.
|
|
- 'motion/**'
|
|
# The Pages redirect stubs land on slave alone; a docs-redirects-only
|
|
# tip fired no run, and the fail-closed release gate read the missing
|
|
# conclusion as "unknown" — silently blocking every release proposal.
|
|
- 'docs-redirects/**'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
# Every fleet PR targets the dev branch, not master (cell->root and
|
|
# root->slave alike). Listing master alone meant `pull_request` never
|
|
# fired for them, so their ONLY coverage was the `push` trigger above
|
|
# — which is branch-PREFIX gated, silently leaving any head outside
|
|
# feature/bug/chore/docs/hotfix with zero checks rather than a red
|
|
# one. Basing on the target branch (what the PR merges INTO) instead
|
|
# of the head's name makes coverage independent of branch naming.
|
|
- slave
|
|
paths:
|
|
- 'roboco/**'
|
|
- 'agents/**'
|
|
- 'alembic/**'
|
|
- 'tests/**'
|
|
- 'scripts/**'
|
|
- 'docker/**'
|
|
- 'docker-compose.yml'
|
|
- 'Makefile'
|
|
- 'pyproject.toml'
|
|
- 'uv.lock'
|
|
- 'alembic.ini'
|
|
- '.github/workflows/ci.yml'
|
|
# Kept identical to the push trigger's paths above so an external-fork
|
|
# PR touching only these (panel/docs-only, motion-only, ...) still
|
|
# fires CI instead of merging on a false "no checks required" green.
|
|
- 'panel/**'
|
|
- 'CLAUDE.md'
|
|
- 'CHANGELOG.md'
|
|
- 'docs/**'
|
|
- 'motion/**'
|
|
- 'docs-redirects/**'
|
|
workflow_dispatch:
|
|
|
|
# A fleet branch that's also an open PR head can get both a `push` and a
|
|
# `pull_request` run for the same commit; cancel the older one instead of
|
|
# burning two runners on identical work. `head_ref` (set only for
|
|
# pull_request) and `ref_name` (the short branch name, valid for push) both
|
|
# resolve to the SAME branch name, so the two event shapes share one group —
|
|
# plain `github.ref` would NOT (it's `refs/pull/<n>/merge` for pull_request
|
|
# vs `refs/heads/<branch>` for push, so it'd never collapse them).
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
quality:
|
|
name: Python quality gate
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
postgres:
|
|
image: pgvector/pgvector:pg16
|
|
env:
|
|
POSTGRES_USER: roboco
|
|
POSTGRES_PASSWORD: roboco
|
|
POSTGRES_DB: roboco
|
|
ports:
|
|
- 5432:5432
|
|
options: >-
|
|
--health-cmd "pg_isready -U roboco"
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
|
|
redis:
|
|
image: redis:7
|
|
ports:
|
|
- 6379:6379
|
|
options: >-
|
|
--health-cmd "redis-cli ping"
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
|
|
env:
|
|
# Runtime settings (roboco.config.Settings reads ROBOCO_*).
|
|
ROBOCO_DATABASE_HOST: localhost
|
|
ROBOCO_DATABASE_PORT: '5432'
|
|
ROBOCO_DATABASE_USER: roboco
|
|
ROBOCO_DATABASE_PASSWORD: roboco
|
|
ROBOCO_DATABASE_NAME: roboco
|
|
ROBOCO_REDIS_HOST: localhost
|
|
ROBOCO_REDIS_PORT: '6379'
|
|
# Fernet key required by the security layer (utils/crypto). Test-only —
|
|
# a valid generated key (the previous value was 43 chars, not a real
|
|
# Fernet key, so encryption tests failed with "Incorrect padding").
|
|
ROBOCO_ENCRYPTION_KEY: 'yp3Awiv0zmxpRa6Gi9Y9hJbi4pZ2FXHRNr4EI6-Gx9U='
|
|
# The pytest harness (tests/conftest.py) provisions its own ephemeral
|
|
# databases via an admin connection to the `postgres` DB and reads a
|
|
# separate ROBOCO_TEST_DB_* set. The pgvector image's POSTGRES_USER is a
|
|
# superuser, so it can CREATE/DROP DATABASE and enable the vector extension.
|
|
ROBOCO_TEST_DB_HOST: localhost
|
|
ROBOCO_TEST_DB_PORT: '5432'
|
|
ROBOCO_TEST_DB_USER: roboco
|
|
ROBOCO_TEST_DB_PASSWORD: roboco
|
|
ROBOCO_TEST_DB_ADMIN_DB: postgres
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v7
|
|
with:
|
|
# The release-readiness smoke test calls ``git describe --tags`` to
|
|
# find the most recent release tag. ``actions/checkout``'s default
|
|
# shallow + no-tags clone makes that return empty, which made
|
|
# ``test_gather_snapshot_reads_the_real_repo`` fail with
|
|
# ``last_tag is None`` even though master had a tagged v0.13.0.
|
|
# ``fetch-depth: 0`` clones full history; the default ``fetch-tags``
|
|
# would still skip tags on shallow clones, so we also pin it true.
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v7
|
|
with:
|
|
python-version: '3.13'
|
|
|
|
- name: Install uv
|
|
run: pip install uv
|
|
|
|
- name: Install dependencies
|
|
run: uv sync --extra dev
|
|
|
|
- name: Apply database migrations
|
|
run: uv run alembic upgrade head
|
|
|
|
- name: Run quality gate
|
|
run: make quality
|