blumeops/plans/ci-cd-bootstrap
Erich Blume 5fcd122494
All checks were successful
Test CI / test (push) Successful in 2s
Reorganize CI/CD bootstrap phases and add custom runner Dockerfile (#50)
## Summary
- Reorder CI/CD bootstrap phases to address chicken-and-egg problem
- P2 is now "Custom Runner Image" (stock runner lacks Node.js)
- Add P3 for "Mirror Forgejo & Build from Source"
- Rename P3 -> P4 (Self-Deploy), P4 -> P5 (Container Builds)
- Add Dockerfile for custom runner with Node.js, npm, docker, build tools
- Update overview with new phase structure, host mode notes, and cross-compilation challenge

## Key Changes

### Phase Reordering
| Old | New | Name |
|-----|-----|------|
| P1 | P1 | Enable Actions (complete) |
| P2 | P2 | **Custom Runner Image** (new focus) |
| - | P3 | **Mirror Forgejo & Build** (new) |
| P3 | P4 | Self-Deploy |
| P4 | P5 | Container Builds |

### Custom Runner Dockerfile
The stock `forgejo/runner:3.5.1` image lacks Node.js, so `actions/checkout@v4` doesn't work. The new Dockerfile adds:
- Node.js + npm (for GitHub Actions)
- Docker CLI (for container builds)
- Build tools (gcc, make, curl, jq)

### Bootstrap Strategy
1. Build custom runner image manually on gilbert (podman build)
2. Push to zot registry
3. Update deployment to use custom image
4. Then enable auto-build workflow for runner

## Deployment and Testing
- [x] Review plan changes
- [x] Build custom runner image manually and verify
- [x] Update runner deployment
- [x] Test `actions/checkout@v4` works

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Reviewed-on: https://forge.tail8d86e.ts.net/eblume/blumeops/pulls/50
2026-01-23 18:50:27 -08:00
..
00_overview.md Reorganize CI/CD bootstrap phases and add custom runner Dockerfile (#50) 2026-01-23 18:50:27 -08:00
P1_enable_actions.md Update CI/CD plan: mark Phase 1 complete, add runner observability 2026-01-23 17:10:14 -08:00
P2_mirror_and_build.md Reorganize CI/CD bootstrap phases and add custom runner Dockerfile (#50) 2026-01-23 18:50:27 -08:00
P3_mirror_forgejo.md Reorganize CI/CD bootstrap phases and add custom runner Dockerfile (#50) 2026-01-23 18:50:27 -08:00
P4_self_deploy.md Reorganize CI/CD bootstrap phases and add custom runner Dockerfile (#50) 2026-01-23 18:50:27 -08:00
P5_container_builds.md Reorganize CI/CD bootstrap phases and add custom runner Dockerfile (#50) 2026-01-23 18:50:27 -08:00