-
Notifications
You must be signed in to change notification settings - Fork 19
471 lines (398 loc) · 14 KB
/
ci.yml
File metadata and controls
471 lines (398 loc) · 14 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
name: CI
on:
pull_request:
branches: [main, dev]
push:
branches: [main, dev]
tags: ["v*.*.*"]
merge_group:
concurrency:
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: read
env:
PYTHON_VERSION: "3.11"
REGISTRY_IMAGE: ghcr.io/usnavy13/librecodeinterpreter
RUNTIME_R_IMAGE: ghcr.io/usnavy13/librecodeinterpreter/runtime-r
BUILDCACHE_IMAGE: ghcr.io/usnavy13/librecodeinterpreter/buildcache
LOCAL_API_IMAGE_AMD64: code-interpreter:ci-amd64
LOCAL_API_IMAGE_ARM64: code-interpreter:ci-arm64
jobs:
changes:
runs-on: ubuntu-latest
outputs:
runtime: ${{ steps.filter.outputs.runtime }}
container: ${{ steps.filter.outputs.container }}
steps:
- uses: actions/checkout@v4
- id: filter
uses: dorny/paths-filter@v3
with:
filters: |
runtime:
- 'Dockerfile'
- 'docker/requirements/**'
container:
- 'Dockerfile'
- 'docker/**'
- 'src/**'
- 'dashboard/**'
- 'requirements.txt'
- 'docker-compose.yml'
static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8 black mypy bandit
- name: Lint with flake8
run: |
flake8 src/ --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 src/ --count --exit-zero --max-complexity=10 --statistics
- name: Check formatting with Black
run: black src/ --check
- name: Type checking with mypy
run: mypy src/
- name: Security scan with Bandit
run: bandit -r src/ -s B104,B108 --severity-level high
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-asyncio pytest-cov pytest-mock
- name: Run unit tests
run: |
mkdir -p test-results
pytest tests/unit/ --junitxml=test-results/unit.xml
- name: Upload unit results
if: always()
uses: actions/upload-artifact@v4
with:
name: unit-results
path: test-results/
if-no-files-found: ignore
integration-contract:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-asyncio pytest-cov pytest-mock
- name: Run contract integration tests
run: |
mkdir -p test-results
pytest tests/integration/ -m contract_only --junitxml=test-results/integration-contract.xml
- name: Upload contract integration results
if: always()
uses: actions/upload-artifact@v4
with:
name: integration-contract-results
path: test-results/
if-no-files-found: ignore
integration-core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-asyncio pytest-cov pytest-mock
- name: Run core integration tests
run: |
mkdir -p test-results
pytest tests/integration/ -m "not contract_only" --junitxml=test-results/integration-core.xml
- name: Upload core integration results
if: always()
uses: actions/upload-artifact@v4
with:
name: integration-core-results
path: test-results/
if-no-files-found: ignore
build-app-amd64:
needs: [changes]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: runtime
name: Compute runtime base
run: |
runtime_hash="$(scripts/ci/compute_runtime_hash.sh)"
runtime_base="$(scripts/ci/resolve_runtime_base.sh "${RUNTIME_R_IMAGE}" "${runtime_hash}")"
echo "runtime_hash=${runtime_hash}" >> "${GITHUB_OUTPUT}"
echo "runtime_base=${runtime_base}" >> "${GITHUB_OUTPUT}"
- name: Build amd64 app candidate
run: |
docker buildx build \
--load \
--target app \
--tag "${LOCAL_API_IMAGE_AMD64}" \
--build-arg "RUNTIME_R_BASE=${{ steps.runtime.outputs.runtime_base }}" \
--cache-from "type=gha,scope=app-amd64" \
--cache-from "type=registry,ref=${BUILDCACHE_IMAGE}:runtime-r-amd64" \
--cache-to "type=gha,scope=app-amd64,mode=max" \
.
- name: Inspect amd64 image
run: docker image inspect "${LOCAL_API_IMAGE_AMD64}" >/dev/null
functional-smoke-amd64:
needs: [changes]
runs-on: ubuntu-24.04
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: pip
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-asyncio pytest-cov pytest-mock
- id: runtime
name: Compute runtime base
run: |
runtime_hash="$(scripts/ci/compute_runtime_hash.sh)"
runtime_base="$(scripts/ci/resolve_runtime_base.sh "${RUNTIME_R_IMAGE}" "${runtime_hash}")"
echo "runtime_base=${runtime_base}" >> "${GITHUB_OUTPUT}"
- name: Build local amd64 test image
run: |
docker buildx build \
--load \
--target app \
--tag "${LOCAL_API_IMAGE_AMD64}" \
--build-arg "RUNTIME_R_BASE=${{ steps.runtime.outputs.runtime_base }}" \
--cache-from "type=gha,scope=app-amd64" \
--cache-from "type=registry,ref=${BUILDCACHE_IMAGE}:runtime-r-amd64" \
--cache-to "type=gha,scope=app-amd64,mode=max" \
.
- name: Start live stack
env:
API_IMAGE: ${{ env.LOCAL_API_IMAGE_AMD64 }}
run: |
cp .env.example .env
docker compose up -d
- name: Wait for API
run: |
if ! scripts/ci/wait_for_api.sh http://localhost:8000/health 24 5; then
docker compose logs --no-color api
exit 1
fi
- name: Run live smoke tests
env:
API_BASE: http://localhost:8000
API_KEY: your-secure-api-key-here-change-this-in-production
run: |
mkdir -p test-results
pytest tests/functional/ \
-m "live_api and not slow and not client_replay" \
-v \
--junitxml=test-results/functional-smoke-amd64.xml
- name: Capture compose logs on failure
if: failure()
run: docker compose logs --no-color > compose-amd64.log
- name: Upload functional smoke artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: functional-smoke-amd64
path: |
test-results/
compose-amd64.log
if-no-files-found: ignore
- name: Stop live stack
if: always()
run: docker compose down -v
client-replay-amd64:
needs: [changes]
runs-on: ubuntu-24.04
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: pip
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-asyncio pytest-cov pytest-mock
- id: runtime
name: Compute runtime base
run: |
runtime_hash="$(scripts/ci/compute_runtime_hash.sh)"
runtime_base="$(scripts/ci/resolve_runtime_base.sh "${RUNTIME_R_IMAGE}" "${runtime_hash}")"
echo "runtime_base=${runtime_base}" >> "${GITHUB_OUTPUT}"
- name: Build local amd64 replay image
run: |
docker buildx build \
--load \
--target app \
--tag "${LOCAL_API_IMAGE_AMD64}" \
--build-arg "RUNTIME_R_BASE=${{ steps.runtime.outputs.runtime_base }}" \
--cache-from "type=gha,scope=app-amd64" \
--cache-from "type=registry,ref=${BUILDCACHE_IMAGE}:runtime-r-amd64" \
--cache-to "type=gha,scope=app-amd64,mode=max" \
.
- name: Start live stack
env:
API_IMAGE: ${{ env.LOCAL_API_IMAGE_AMD64 }}
run: |
cp .env.example .env
docker compose up -d
- name: Wait for API
run: |
if ! scripts/ci/wait_for_api.sh http://localhost:8000/health 24 5; then
docker compose logs --no-color api
exit 1
fi
- name: Run client replay tests
env:
API_BASE: http://localhost:8000
API_KEY: your-secure-api-key-here-change-this-in-production
run: |
mkdir -p test-results
pytest tests/functional/ \
-m client_replay \
-v \
--junitxml=test-results/client-replay-amd64.xml
- name: Capture compose logs on failure
if: failure()
run: docker compose logs --no-color > compose-client-replay.log
- name: Upload client replay artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: client-replay-amd64
path: |
test-results/
compose-client-replay.log
if-no-files-found: ignore
- name: Stop live stack
if: always()
run: docker compose down -v
arm64-smoke-conditional:
if: needs.changes.outputs.container == 'true'
needs: [changes]
runs-on: ubuntu-24.04-arm
timeout-minutes: 35
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: pip
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-asyncio pytest-cov pytest-mock
- id: runtime
name: Compute runtime base
run: |
runtime_hash="$(scripts/ci/compute_runtime_hash.sh)"
runtime_base="$(scripts/ci/resolve_runtime_base.sh "${RUNTIME_R_IMAGE}" "${runtime_hash}")"
echo "runtime_base=${runtime_base}" >> "${GITHUB_OUTPUT}"
- name: Build local arm64 test image
run: |
docker buildx build \
--load \
--target app \
--tag "${LOCAL_API_IMAGE_ARM64}" \
--build-arg "RUNTIME_R_BASE=${{ steps.runtime.outputs.runtime_base }}" \
--cache-from "type=gha,scope=app-arm64" \
--cache-from "type=registry,ref=${BUILDCACHE_IMAGE}:runtime-r-arm64" \
--cache-to "type=gha,scope=app-arm64,mode=max" \
.
- name: Start live stack
env:
API_IMAGE: ${{ env.LOCAL_API_IMAGE_ARM64 }}
run: |
cp .env.example .env
docker compose up -d
- name: Wait for API
run: |
if ! scripts/ci/wait_for_api.sh http://localhost:8000/health 24 5; then
docker compose logs --no-color api
exit 1
fi
- name: Run arm64 smoke suite
env:
API_BASE: http://localhost:8000
API_KEY: your-secure-api-key-here-change-this-in-production
run: |
mkdir -p test-results
pytest \
tests/functional/test_health.py \
tests/functional/test_exec_workflow.py::TestSessionWorkflow::test_execution_creates_session \
tests/functional/test_files.py::TestFileUpload::test_upload_single_file \
tests/functional/test_ptc.py::TestPTCInitialExecution::test_ptc_simple_code_completes \
-v \
--junitxml=test-results/arm64-smoke.xml
- name: Capture compose logs on failure
if: failure()
run: docker compose logs --no-color > compose-arm64.log
- name: Upload arm64 smoke artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: arm64-smoke
path: |
test-results/
compose-arm64.log
if-no-files-found: ignore
- name: Stop live stack
if: always()
run: docker compose down -v