-
Notifications
You must be signed in to change notification settings - Fork 0
585 lines (470 loc) · 16.9 KB
/
ci.yml
File metadata and controls
585 lines (470 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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
# Backend checks
backend:
name: Backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Docker Hub mirror
run: |
sudo mkdir -p /etc/docker
echo '{"registry-mirrors": ["https://mirror.gcr.io"]}' | sudo tee /etc/docker/daemon.json
sudo systemctl restart docker
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install Rust nightly (for formatting)
run: rustup install nightly && rustup component add rustfmt --toolchain nightly
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libxml2-dev libxslt1-dev libxmlsec1-dev libclang-dev tesseract-ocr tesseract-ocr-eng
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Create placeholder directories for rust-embed
run: |
mkdir -p ui/dist docs/out
echo '<!DOCTYPE html><html><body>Placeholder</body></html>' > ui/dist/index.html
echo '<!DOCTYPE html><html><body>Placeholder</body></html>' > docs/out/index.html
- name: Fetch model catalog
run: ./scripts/fetch-model-catalog.sh
- name: Fetch reference specs
run: pip install pyyaml && ./scripts/fetch-openapi-specs.sh openai
- name: Check formatting
run: cargo +nightly fmt -- --check
- name: Clippy
# Note: --all-features is not used because `wasm` is mutually exclusive with `server`
run: cargo clippy --all-targets -- -D clippy::correctness -W clippy::style
- name: Install cargo-nextest
uses: taiki-e/install-action@nextest
- name: Tests (unit)
run: cargo nextest run
- name: Tests (integration)
run: cargo test -- --ignored
# Feature matrix builds
feature-check:
name: Feature Check (${{ matrix.features }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
features: [tiny, minimal, standard, full, headless]
steps:
- uses: actions/checkout@v4
- name: Configure Docker Hub mirror
run: |
sudo mkdir -p /etc/docker
echo '{"registry-mirrors": ["https://mirror.gcr.io"]}' | sudo tee /etc/docker/daemon.json
sudo systemctl restart docker
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libxml2-dev libxslt1-dev libxmlsec1-dev libclang-dev tesseract-ocr tesseract-ocr-eng
- name: Cache cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ matrix.features }}
- name: Create placeholder directories for rust-embed
run: |
mkdir -p ui/dist docs/out
echo '<!DOCTYPE html><html><body>Placeholder</body></html>' > ui/dist/index.html
echo '<!DOCTYPE html><html><body>Placeholder</body></html>' > docs/out/index.html
- name: Fetch model catalog
run: ./scripts/fetch-model-catalog.sh
- name: Fetch reference specs
run: pip install pyyaml && ./scripts/fetch-openapi-specs.sh openai
- name: Clippy
run: cargo clippy --no-default-features --features ${{ matrix.features }} --all-targets -- -D warnings
- name: Install cargo-nextest
uses: taiki-e/install-action@nextest
- name: Tests (unit)
run: cargo nextest run --no-default-features --features ${{ matrix.features }}
- name: Tests (integration)
run: cargo test --no-default-features --features ${{ matrix.features }} -- --ignored
# WASM build check
wasm-build:
name: WASM Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-unknown-unknown
- name: Install wasm-pack
run: cargo install wasm-pack@0.13.1 --locked
- name: Cache cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: wasm
- name: Create placeholder directories for rust-embed
run: |
mkdir -p ui/dist docs/out
echo '<!DOCTYPE html><html><body>Placeholder</body></html>' > ui/dist/index.html
echo '<!DOCTYPE html><html><body>Placeholder</body></html>' > docs/out/index.html
- name: Build WASM module
run: ./scripts/build-wasm.sh --release
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install UI dependencies
working-directory: ui
run: pnpm install --frozen-lockfile
- name: Generate API client
working-directory: ui
run: pnpm run generate-api
- name: Build frontend (WASM mode)
working-directory: ui
run: pnpm build
env:
VITE_WASM_MODE: "true"
# Cross-platform builds
cross-build:
name: Cross Build (${{ matrix.target }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
features: full
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
features: minimal
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
features: minimal
- target: aarch64-apple-darwin
os: macos-latest
features: full
- target: x86_64-pc-windows-msvc
os: windows-latest
features: minimal
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Install dependencies (Linux full)
if: matrix.features == 'full' && runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y libxml2-dev libxslt1-dev libxmlsec1-dev libclang-dev
- name: Install dependencies (macOS)
if: runner.os == 'macOS'
run: brew install libxml2 libxslt libxmlsec1 llvm
- name: Install musl toolchain
if: matrix.target == 'x86_64-unknown-linux-musl'
run: sudo apt-get update && sudo apt-get install -y musl-tools
- name: Install aarch64 cross toolchain
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Cache cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ matrix.target }}
- name: Create placeholder directories for rust-embed
run: |
mkdir -p ui/dist
mkdir -p docs/out
echo '<!DOCTYPE html><html><body>Placeholder</body></html>' > ui/dist/index.html
echo '<!DOCTYPE html><html><body>Placeholder</body></html>' > docs/out/index.html
- name: Fetch model catalog
shell: bash
run: mkdir -p data && curl -sSL https://models.dev/api.json -o data/models-dev-catalog.json
- name: Build
run: cargo build --release --target ${{ matrix.target }} --no-default-features --features ${{ matrix.features }}
env:
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
# Security audit with cargo-audit
security-audit:
name: Security Audit (cargo-audit)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cargo-audit
run: cargo install cargo-audit --locked
- name: Run cargo audit
run: cargo audit
# Dependency checks with cargo-deny
cargo-deny:
name: Dependency Check (cargo-deny)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cargo-deny
run: cargo install cargo-deny --locked
- name: Run cargo deny
run: cargo deny check
# Frontend checks
frontend:
name: Frontend
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Cache pnpm
uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Generate API client
run: pnpm run generate-api
- name: Lint
run: pnpm lint
- name: Format check
run: pnpm format:check
- name: Type check
run: pnpm exec tsc --noEmit
- name: Build
run: pnpm build
- name: Unit tests
run: pnpm test
- name: Build Storybook
run: pnpm storybook:build
- name: Install Playwright browsers
run: npx playwright install chromium --with-deps
- name: Storybook tests
run: |
npx concurrently -k -s first -n "SB,TEST" \
"npx http-server storybook-static --port 6006 --silent" \
"npx wait-on tcp:127.0.0.1:6006 && pnpm test-storybook"
# Frontend security audit
security-frontend:
name: Security Audit (Frontend)
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run pnpm audit
run: pnpm audit --audit-level=high
# Documentation site checks
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Cache pnpm
uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-docs-${{ hashFiles('docs/pnpm-lock.yaml', 'ui/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-docs-
# Build Storybook first (docs embeds it via symlink)
- name: Install UI dependencies
working-directory: ui
run: pnpm install --frozen-lockfile
- name: Generate API client
working-directory: ui
run: pnpm run generate-api
- name: Build Storybook
working-directory: ui
run: pnpm storybook:build
# Build docs
- name: Install docs dependencies
working-directory: docs
run: pnpm install --frozen-lockfile
- name: Lint docs
working-directory: docs
run: pnpm lint
- name: Format check docs
working-directory: docs
run: pnpm format:check
- name: Type check docs
working-directory: docs
run: pnpm types:check
- name: Build docs
working-directory: docs
run: pnpm build
# OpenAPI conformance check
openapi-conformance:
name: OpenAPI Conformance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Fetch reference specs
run: ./scripts/fetch-openapi-specs.sh openai
- name: Run conformance check
run: ./scripts/openapi-conformance.py
- name: Generate JSON report
if: always()
run: ./scripts/openapi-conformance.py --format json > conformance-report.json || true
- name: Upload conformance report
if: always()
uses: actions/upload-artifact@v4
with:
name: openapi-conformance-report
path: conformance-report.json
# Docker build - shared image used by e2e tests
docker-build:
name: Docker Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Docker Hub mirror
run: |
sudo mkdir -p /etc/docker
echo '{"registry-mirrors": ["https://mirror.gcr.io"]}' | sudo tee /etc/docker/daemon.json
sudo systemctl restart docker
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export Docker image
uses: docker/build-push-action@v6
with:
context: .
tags: hadrian:local
outputs: type=docker,dest=${{ runner.temp }}/hadrian.tar
cache-from: type=gha,scope=docker
cache-to: type=gha,mode=max,scope=docker
- name: Upload Docker image artifact
uses: actions/upload-artifact@v4
with:
name: docker-image
path: ${{ runner.temp }}/hadrian.tar
retention-days: 1
# TypeScript E2E tests with testcontainers
e2e:
name: E2E Tests
runs-on: ubuntu-latest
needs: [docker-build]
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Configure Docker Hub mirror
run: |
sudo mkdir -p /etc/docker
echo '{"registry-mirrors": ["https://mirror.gcr.io"]}' | sudo tee /etc/docker/daemon.json
sudo systemctl restart docker
- name: Download Docker image artifact
uses: actions/download-artifact@v4
with:
name: docker-image
path: ${{ runner.temp }}
- name: Load Docker image
run: docker load --input ${{ runner.temp }}/hadrian.tar
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Cache pnpm
uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-e2e-${{ hashFiles('deploy/tests/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-e2e-
- name: Install dependencies
working-directory: deploy/tests
run: pnpm install --frozen-lockfile
- name: Install Playwright browsers
working-directory: deploy/tests
run: npx playwright install chromium --with-deps
- name: Generate API client
working-directory: deploy/tests
run: pnpm generate-client
- name: Pre-pull Docker images for E2E tests
working-directory: deploy
run: |
# Pull all images from all compose files upfront so testcontainers
# don't timeout waiting for pulls. --ignore-pull-failures skips the
# gateway service which uses a pre-built local image.
args=()
for f in docker-compose.*.yml; do
args+=(-f "$f")
done
docker compose "${args[@]}" pull --ignore-pull-failures
- name: Run E2E tests
working-directory: deploy/tests
env:
CI: 'true'
# Run tests serially to avoid Docker resource contention on 2-vCPU runners.
# This merges all workspace projects into a single sequential project.
E2E_SERIAL: 'true'
TESTCONTAINERS_RYUK_DISABLED: 'true'
# Skip Docker build - image was pre-built in the docker-build job
SKIP_BUILD: 'true'
# API coverage thresholds - CI will fail if coverage drops below these values.
# Set to 0 to disable threshold enforcement for that metric.
# Current baseline: ~13.7% endpoints, ~5% parameters, ~5.7% status codes
# Start with conservative endpoint threshold to prevent regression.
API_COVERAGE_ENDPOINTS_THRESHOLD: '10'
API_COVERAGE_PARAMETERS_THRESHOLD: '0'
API_COVERAGE_STATUS_CODES_THRESHOLD: '0'
run: pnpm test
timeout-minutes: 50
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
with:
name: e2e-api-coverage
path: deploy/tests/coverage/api-coverage.json
retention-days: 30
- name: Upload test artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: e2e-test-artifacts
path: |
deploy/tests/test-results/
retention-days: 7