ci: add Gitea Actions workflow and Docker Compose test runner; add test image\n\ngovernance: encode CI/containers rules in system prompts and AGENTS templates; update proposal and docs
Some checks failed
ci / test (push) Has been cancelled

This commit is contained in:
2025-09-17 11:07:06 -05:00
parent 8a55d59804
commit cf66c9a065
13 changed files with 114 additions and 7 deletions

View File

@@ -171,3 +171,13 @@ This log is concise and structured for quick machine parsing and summarization.
- Updated CLI guardrail tests accordingly
- next:
- Keep root minimal going forward; store assets under subdirectories
## 2025-09-17T16:50Z
- context: CI/Containers governance (Gitea + Docker) and local parity
- actions:
- Added `.gitea/workflows/ci.yml` using Docker Compose
- Added `docker/compose.yml` and `docker/test/Dockerfile` with explicit names and cleanup flow
- Added `scripts/test.docker.sh` wrapper
- Propagated CI/containers rules to system prompts and AGENTS templates; updated proposal
- next:
- Ensure future features include containerized workflows and CI updates

View File

@@ -7,6 +7,7 @@ Overview
Status (Phase 1 in progress)
- Implemented: `new-mode` scaffolder (repo-only), CLI skeleton, guardrails.
- Pending (per plan): `new-project`, `run`, config precedence (YAML+yq).
- CI/Containers: Gitea Actions workflow in `.gitea/workflows/ci.yml`; local parity via `docker/compose.yml`.
CLI
- Help: `./CodexHelper --help`
@@ -16,6 +17,6 @@ CLI
Development
- Tests: run `scripts/test.sh` (uses bats if available, falls back to internal runner).
- Docker tests: `scripts/test.docker.sh` runs the same suite via Docker Compose.
- Follow TDD: write failing tests first, make them pass, refactor.
- Keep `docs/architecture.md` and README up to date as features land.