mirror of
https://github.com/karpathy/nanochat.git
synced 2026-05-08 16:59:59 +00:00
Adds GitHub Actions workflows for per-service CI (paths-filter gated), dev image builds to ECR via OIDC, RC*-tag UAT promotion with image re-tagging and Helm deploy, v*-tag blue/green prod release with smoke test + ingress swap, and a nightly docker-compose integration suite. Ships a Helm umbrella chart (dev/uat/prod values) with Deployments, ClusterIP Services, ALB Ingress (samosachaat.art + grafana host), HPAs for chat-api/inference in prod, PDBs, ConfigMap/Secret wiring, and an alembic db-migrate Helm hook job. Wires commitlint + husky for Conventional Commits at the repo root. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
38 lines
928 B
YAML
38 lines
928 B
YAML
name: Nightly integration
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 6 * * *'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
compose-integration:
|
|
name: docker compose integration suite
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 45
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Run compose integration
|
|
run: |
|
|
set -euo pipefail
|
|
compose_files=(-f docker-compose.yml)
|
|
if [ -f docker-compose.test.yml ]; then
|
|
compose_files+=(-f docker-compose.test.yml)
|
|
fi
|
|
docker compose "${compose_files[@]}" up --build --abort-on-container-exit --exit-code-from tests
|
|
|
|
- name: Compose logs on failure
|
|
if: failure()
|
|
run: docker compose logs --no-color
|
|
|
|
- name: Tear down
|
|
if: always()
|
|
run: docker compose down -v --remove-orphans
|