forked from Soju06/codex-lb
-
Notifications
You must be signed in to change notification settings - Fork 0
567 lines (461 loc) · 16.9 KB
/
ci.yml
File metadata and controls
567 lines (461 loc) · 16.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
name: CI
on:
push:
branches: ["main"]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
frontend-lint:
name: Frontend lint (eslint)
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.10"
- name: Install frontend dependencies
run: cd frontend && bun install --frozen-lockfile
- name: Run frontend lint
run: cd frontend && bun run lint
frontend-typecheck:
name: Frontend type check (tsc)
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.10"
- name: Install frontend dependencies
run: cd frontend && bun install --frozen-lockfile
- name: Run frontend type check
run: cd frontend && bun run typecheck
frontend-test:
name: Frontend tests (vitest + coverage)
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.10"
- name: Install frontend dependencies
run: cd frontend && bun install --frozen-lockfile
- name: Run frontend tests with coverage
run: cd frontend && bun run test:coverage
frontend-build:
name: Frontend build (vite)
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.10"
- name: Install frontend dependencies
run: cd frontend && bun install --frozen-lockfile
- name: Build frontend
run: cd frontend && bun run build
lint:
name: Lint (ruff)
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up uv
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.13"
enable-cache: true
- name: Ruff check
run: uvx ruff check .
- name: Ruff format (check)
run: uvx ruff format --check .
typecheck:
name: Type check (ty)
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up uv
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.13"
enable-cache: true
- name: Install dependencies
run: uv sync --dev --frozen
- name: Ty check
run: uv run ty check
test:
name: Tests (pytest, ${{ matrix.slice.name }})
runs-on: ubuntu-24.04
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
slice:
- name: unit
paths: "tests/unit tests/test_request_logs_options_api.py"
- name: integration-core
paths: "tests/integration --ignore=tests/integration/test_http_responses_bridge.py --ignore=tests/integration/test_proxy_websocket_responses.py"
extra_args: ""
- name: integration-bridge
paths: "tests/integration/test_http_responses_bridge.py tests/integration/test_proxy_websocket_responses.py"
extra_args: "-vv"
- name: e2e
paths: "tests/e2e"
extra_args: ""
env:
PYTHONFAULTHANDLER: "1"
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.10"
- name: Install frontend dependencies
run: cd frontend && bun install --frozen-lockfile
- name: Build frontend assets
run: cd frontend && bun run build
- name: Set up uv
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.13"
enable-cache: true
- name: Install dependencies
run: uv sync --dev --frozen
- name: Run tests
run: uv run pytest -q -ra ${{ matrix.slice.extra_args }} -o faulthandler_timeout=300 -o faulthandler_exit_on_timeout=true --timeout=180 --timeout-method=thread --durations=20 ${{ matrix.slice.paths }}
test-postgres:
name: Tests (pytest, PostgreSQL)
runs-on: ubuntu-24.04
timeout-minutes: 20
services:
postgres:
image: postgres:16
env:
POSTGRES_USER: codex_lb
POSTGRES_PASSWORD: codex_lb
POSTGRES_DB: codex_lb
ports:
- 5432:5432
options: >-
--health-cmd "pg_isready -U codex_lb -d codex_lb"
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
CODEX_LB_TEST_DATABASE_URL: postgresql+asyncpg://codex_lb:codex_lb@127.0.0.1:5432/codex_lb
PYTHONFAULTHANDLER: "1"
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.10"
- name: Install frontend dependencies
run: cd frontend && bun install --frozen-lockfile
- name: Build frontend assets
run: cd frontend && bun run build
- name: Set up uv
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.13"
enable-cache: true
- name: Install dependencies
run: uv sync --dev --frozen
- name: Run tests
run: uv run pytest -q -ra -o faulthandler_timeout=300 -o faulthandler_exit_on_timeout=true --timeout=180 --timeout-method=thread --durations=20
migration-check:
name: Migration check (alembic)
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up uv
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.13"
enable-cache: true
- name: Install dependencies
run: uv sync --dev --frozen
- name: Validate migration policy and drift
shell: bash
run: |
set -euo pipefail
TMP_DB="$(mktemp -u /tmp/codex-lb-ci-migrate-XXXXXX.db)"
DB_URL="sqlite+aiosqlite:///${TMP_DB}"
uv run codex-lb-db --db-url "${DB_URL}" upgrade head
uv run codex-lb-db --db-url "${DB_URL}" check
migration-check-postgres:
name: Migration check (alembic, PostgreSQL)
runs-on: ubuntu-24.04
services:
postgres:
image: postgres:16
env:
POSTGRES_USER: codex_lb
POSTGRES_PASSWORD: codex_lb
POSTGRES_DB: codex_lb
ports:
- 5432:5432
options: >-
--health-cmd "pg_isready -U codex_lb -d codex_lb"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up uv
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.13"
enable-cache: true
- name: Install dependencies
run: uv sync --dev --frozen
- name: Validate migration policy and drift on PostgreSQL
shell: bash
run: |
set -euo pipefail
DB_URL="postgresql+asyncpg://codex_lb:codex_lb@127.0.0.1:5432/codex_lb"
uv run codex-lb-db --db-url "${DB_URL}" upgrade head
uv run codex-lb-db --db-url "${DB_URL}" check
package:
name: Package (build)
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.10"
- name: Install frontend dependencies
run: cd frontend && bun install --frozen-lockfile
- name: Build frontend assets
run: cd frontend && bun run build
- name: Set up uv
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.13"
enable-cache: true
- name: Install package (runtime deps)
run: uv sync --frozen --no-dev
- name: Import check
run: uv run python -c "import app; import app.main; print('import ok')"
- name: Build sdist + wheel
run: uvx --from build python -m build
- name: Verify wheel contains frontend assets
shell: bash
run: |
python - <<'PY'
import glob
import zipfile
wheels = glob.glob("dist/*.whl")
if not wheels:
raise SystemExit("no wheel found in dist/")
wheel = wheels[0]
with zipfile.ZipFile(wheel) as zf:
names = set(zf.namelist())
has_index = "app/static/index.html" in names
has_js = any(name.startswith("app/static/assets/") and name.endswith(".js") for name in names)
has_css = any(name.startswith("app/static/assets/") and name.endswith(".css") for name in names)
if not (has_index and has_js and has_css):
raise SystemExit(
f"frontend assets missing in wheel: index={has_index} js={has_js} css={has_css}"
)
print(f"frontend assets verified in wheel: {wheel}")
PY
docker:
name: Docker build
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Build Docker image
uses: docker/build-push-action@v7
with:
context: .
file: Dockerfile
push: false
load: true
tags: codex-lb:ci
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Scan Docker image with Trivy
uses: aquasecurity/trivy-action@0.35.0
with:
image-ref: codex-lb:ci
format: table
exit-code: 1
severity: CRITICAL
ignore-unfixed: true
helm-lint:
name: Helm lint + template + kubeconform
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up Helm
uses: azure/setup-helm@v5
- name: Build Helm dependencies
run: helm dependency build deploy/helm/codex-lb/
- name: Helm lint (base values)
run: |
helm lint --strict deploy/helm/codex-lb/ \
--set postgresql.auth.password=test-password
- name: Helm lint (dev overlay)
run: |
helm lint --strict deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-dev.yaml \
--set postgresql.auth.password=test-password
- name: Helm lint (bundled mode)
run: |
helm lint --strict deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-bundled.yaml \
--set postgresql.auth.password=test-password
- name: Helm lint (external DB mode)
run: |
helm lint --strict deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-external-db.yaml \
--set externalDatabase.url=postgresql+asyncpg://test:test@localhost/test
- name: Helm lint (external secrets mode)
run: |
helm lint --strict deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-external-secrets.yaml \
--set externalSecrets.secretStoreRef.name=test-store
- name: Helm lint (staging overlay)
run: |
helm lint --strict deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-staging.yaml \
--set externalDatabase.url=postgresql+asyncpg://test:test@localhost/test
- name: Helm lint (prod overlay)
run: |
helm lint --strict deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-prod.yaml \
--set externalSecrets.secretStoreRef.name=test-store
- name: Helm template (base values)
run: |
helm template codex-lb deploy/helm/codex-lb/ \
--set postgresql.auth.password=test-password \
> /dev/null
- name: Helm template (dev overlay)
run: |
helm template codex-lb deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-dev.yaml \
--set postgresql.auth.password=test-password \
> /dev/null
- name: Helm template (bundled mode)
run: |
helm template codex-lb deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-bundled.yaml \
--set postgresql.auth.password=test-password \
> /dev/null
- name: Helm template (external DB mode)
run: |
helm template codex-lb deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-external-db.yaml \
--set externalDatabase.url=postgresql+asyncpg://test:test@localhost/test \
> /dev/null
- name: Helm template (external secrets mode)
run: |
helm template codex-lb deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-external-secrets.yaml \
--set externalSecrets.secretStoreRef.name=test-store \
> /dev/null
- name: Helm template (staging overlay)
run: |
helm template codex-lb deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-staging.yaml \
--set externalDatabase.url=postgresql+asyncpg://test:test@localhost/test \
> /dev/null
- name: Helm template (prod overlay)
run: |
helm template codex-lb deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-prod.yaml \
--set externalSecrets.secretStoreRef.name=test-store \
> /dev/null
- name: Install kubeconform
run: |
KUBECONFORM_VERSION="0.7.0"
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
if [ "$ARCH" = "x86_64" ]; then ARCH="amd64"; fi
curl -sSL "https://github.com/yannh/kubeconform/releases/download/v${KUBECONFORM_VERSION}/kubeconform-${OS}-${ARCH}.tar.gz" \
| tar xz -C /tmp
sudo mv /tmp/kubeconform /usr/local/bin/kubeconform
- name: kubeconform (K8s 1.32.0)
run: |
helm template codex-lb deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-prod.yaml \
--set externalSecrets.secretStoreRef.name=test \
--set externalSecrets.secretStoreRef.kind=SecretStore \
--set gatewayApi.enabled=true \
--set "gatewayApi.parentRefs[0].name=test-gw" \
--set "gatewayApi.hostnames[0]=test.example.com" \
| kubeconform \
-strict \
-kubernetes-version 1.32.0 \
-schema-location default \
-schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json' \
-summary
- name: kubeconform (K8s 1.35.0)
run: |
helm template codex-lb deploy/helm/codex-lb/ \
-f deploy/helm/codex-lb/values-prod.yaml \
--set externalSecrets.secretStoreRef.name=test \
--set externalSecrets.secretStoreRef.kind=SecretStore \
--set gatewayApi.enabled=true \
--set "gatewayApi.parentRefs[0].name=test-gw" \
--set "gatewayApi.hostnames[0]=test.example.com" \
| kubeconform \
-strict \
-kubernetes-version 1.35.0 \
-schema-location default \
-schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json' \
-summary
helm-smoke-kind:
name: Helm smoke install (kind)
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Set up Helm
uses: azure/setup-helm@v5
- name: Install kind
run: |
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.30.0/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
- name: Create kind cluster
run: kind create cluster --name codex-lb-smoke --image kindest/node:v1.35.0 --wait 120s
- name: Build Docker image
run: docker build -t ghcr.io/soju06/codex-lb:ci .
- name: Load image into kind
run: kind load docker-image ghcr.io/soju06/codex-lb:ci --name codex-lb-smoke
- name: Smoke install (bundled mode)
env:
KUBE_CONTEXT: kind-codex-lb-smoke
IMAGE_REGISTRY: ghcr.io
IMAGE_REPOSITORY: soju06/codex-lb
IMAGE_TAG: ci
run: ./scripts/helm-kind-smoke.sh bundled
- name: Smoke install (external DB mode)
env:
KUBE_CONTEXT: kind-codex-lb-smoke
IMAGE_REGISTRY: ghcr.io
IMAGE_REPOSITORY: soju06/codex-lb
IMAGE_TAG: ci
run: ./scripts/helm-kind-smoke.sh external-db