omnigraph/docs/ci.md
Ragnor Comerford a335d98854
Refactor AGENTS.md from encyclopedia to map; move spec into docs/
Splits the 990-line AGENTS.md into a 184-line map (architecture,
where-to-find index, always-on invariants, capability matrix,
maintenance contract) plus 18 new docs/*.md files holding the deep
content per topic (storage, schema and query languages, indexes,
embeddings, branches/commits, runs, merge, changes, execution, policy,
server, CLI reference, audit, errors, CI, constants, v0.3.1 notes).

Adds scripts/check-agents-md.sh and a check_agents_md CI job that
verifies every docs/ link in AGENTS.md resolves and every doc in the
canonical set is linked. CLAUDE.md remains a symlink to AGENTS.md.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-28 23:31:08 +02:00

1.1 KiB

CI / Release Workflows

.github/workflows/:

  • ci.yml: text-only changes skip; otherwise cargo test --workspace --locked on ubuntu-latest with protobuf compiler. OpenAPI-drift check that auto-commits the regenerated openapi.json for same-repo PRs. Also runs the AGENTS.md cross-link integrity check (scripts/check-agents-md.sh).
  • AWS feature build job: cargo build/test -p omnigraph-server --features aws on ubuntu-latest.
  • RustFS S3 integration: spins up RustFS in Docker, runs s3_storage, server_opens_s3_repo_directly_and_serves_snapshot_and_read, and local_cli_s3_end_to_end_init_load_read_flow.
  • release-edge.yml: on every push to main, retags edge, builds Linux/macOS-Intel/macOS-arm64 archives + sha256, publishes a rolling prerelease.
  • release.yml: on v* tags, builds the 3-platform matrix and updates the Homebrew tap (scripts/update-homebrew-formula.sh) by force-pushing the regenerated formula to ModernRelay/homebrew-tap.
  • package.yml: manual ECR image build; emits two image tags per commit (<sha>, <sha>-aws) via CodeBuild.