-
Notifications
You must be signed in to change notification settings - Fork 0
612 lines (525 loc) · 19.3 KB
/
Copy pathci.yml
File metadata and controls
612 lines (525 loc) · 19.3 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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
autofix:
name: Autofix (lint & format)
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false
runs-on: withakay-selfhosted-arm
timeout-minutes: 10
permissions:
contents: write
outputs:
pushed: ${{ steps.push_fixes.outputs.pushed }}
steps:
- name: Generate GitHub App token
id: app_token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.ITO_CI_APP_ID }}
private-key: ${{ secrets.ITO_CI_APP_PRIVATE_KEY }}
- name: Checkout PR branch
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
# Use App token so pushes trigger new workflow runs
token: ${{ steps.app_token.outputs.token }}
fetch-depth: 2
# Skip if the last commit was already an autofix commit (prevent loops)
- name: Check for autofix loop
id: loop_check
run: |
LAST_AUTHOR="$(git log -1 --format='%an')"
if [[ "$LAST_AUTHOR" == "github-actions[bot]" ]]; then
echo "skip=true" >> "$GITHUB_OUTPUT"
echo "Last commit was from autofix bot — skipping to prevent loop."
else
echo "skip=false" >> "$GITHUB_OUTPUT"
fi
- name: Install build-essential
if: steps.loop_check.outputs.skip != 'true'
uses: ./.github/actions/cache-apt-pkgs
with:
packages: build-essential
- name: Setup toolchain (mise)
if: steps.loop_check.outputs.skip != 'true'
uses: jdx/mise-action@v3
- name: Install Rust components (rustfmt)
if: steps.loop_check.outputs.skip != 'true'
run: |
set -eu
mise install
mise trust
TOOLCHAIN="$(rustup show active-toolchain | awk '{print $1}')"
rustup component add --toolchain "$TOOLCHAIN" rustfmt
# --- File hygiene fixes (matching .editorconfig & .pre-commit-config.yaml) ---
- name: Fix line endings (CRLF -> LF)
if: steps.loop_check.outputs.skip != 'true'
run: |
# Convert CRLF to LF for all text files, respecting .gitattributes
# (git handles .bat/.cmd/.ps1 CRLF via .gitattributes at checkout/commit)
git ls-files -z | xargs -0 -P4 -I{} \
sh -c 'file --mime "{}" | grep -q "text/" && sed -i "s/\r$//" "{}" || true'
- name: Fix trailing whitespace
if: steps.loop_check.outputs.skip != 'true'
run: |
# Trim trailing whitespace from all tracked text files EXCEPT:
# - *.md files (editorconfig: trailing whitespace = line breaks)
# - tests/** (editorconfig: snapshot files may need trailing WS)
# But DO trim tests/**/*.rs and tests/**/*.js (editorconfig overrides)
git ls-files -z | while IFS= read -r -d '' f; do
# Skip binary files
file --mime "$f" | grep -q "text/" || continue
# Skip markdown files
case "$f" in *.md) continue ;; esac
# Skip tests/** unless it's a .rs or .js file
case "$f" in
tests/*)
case "$f" in *.rs|*.js) ;; *) continue ;; esac
;;
esac
# Trim trailing whitespace
sed -i 's/[[:space:]]*$//' "$f"
done
- name: Fix missing final newline
if: steps.loop_check.outputs.skip != 'true'
run: |
# Ensure every tracked text file ends with a newline
git ls-files -z | while IFS= read -r -d '' f; do
[ -f "$f" ] || continue
file --mime "$f" | grep -q "text/" || continue
# Add newline if file is non-empty and missing one
if [ -s "$f" ] && [ "$(tail -c1 "$f" | wc -l)" -eq 0 ]; then
echo "" >> "$f"
fi
done
- name: Format JSON files
if: steps.loop_check.outputs.skip != 'true'
run: |
# Pretty-format JSON files (2-space indent, no key sorting)
# Matches: pretty-format-json --autofix --indent=2 --no-sort-keys
git ls-files -z '*.json' ':!tests/**' | while IFS= read -r -d '' f; do
[ -f "$f" ] || continue
python3 -c "
import json, sys
with open('$f', 'r') as fh:
data = json.load(fh)
with open('$f', 'w') as fh:
json.dump(data, fh, indent=2, sort_keys=False)
fh.write('\n')
" 2>/dev/null || true
done
# --- Rust formatting ---
- name: Rust fmt (autofix)
if: steps.loop_check.outputs.skip != 'true'
run: cargo fmt --all
# --- Generated artifacts ---
- name: Update config schema artifact
if: steps.loop_check.outputs.skip != 'true'
run: |
# Keep schemas/ito-config.schema.json in sync with the code.
# If this changes the working tree, the commit step below will push it.
make config-schema
# --- Commit and push if anything changed ---
- name: Commit and push fixes
id: push_fixes
if: steps.loop_check.outputs.skip != 'true'
env:
GIT_AUTHOR_NAME: "github-actions[bot]"
GIT_AUTHOR_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
GIT_COMMITTER_NAME: "github-actions[bot]"
GIT_COMMITTER_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
run: |
if git diff --quiet && git diff --staged --quiet; then
echo "No changes to commit — tree is clean."
echo "pushed=false" >> "$GITHUB_OUTPUT"
exit 0
fi
git add -A
git commit -m "ci: autofix lint, formatting, and generated artifacts
Automated fixes applied by CI:
- Line endings (CRLF -> LF)
- Trailing whitespace
- Final newlines
- JSON formatting
- Rust formatting (cargo fmt)
- Regenerated config schema (schemas/ito-config.schema.json)"
git push
echo "pushed=true" >> "$GITHUB_OUTPUT"
echo "::notice::Autofix pushed changes — a new CI run will validate the fixed code."
test:
name: Shipping defaults — test
needs: [autofix]
# Run when autofix is skipped (push to main, workflow_dispatch) or succeeded
# without pushing. If autofix pushed, a new CI run handles checks instead.
if: |
always()
&& (needs.autofix.result == 'success' || needs.autofix.result == 'skipped')
&& needs.autofix.outputs.pushed != 'true'
#runs-on: withakay-selfhosted
runs-on: withakay-selfhosted-arm
timeout-minutes: 20
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install build-essential
uses: ./.github/actions/cache-apt-pkgs
with:
packages: build-essential
- name: Setup toolchain (mise)
uses: jdx/mise-action@v3
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: . -> target
shared-key: ci-test-linux
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: . -> target
- name: Print environment diagnostics
run: |
mise install
mise trust
rustc -V
cargo -V
- name: Test shipping CLI defaults
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
run: make test
- name: Assert standard dependency boundary
run: make release-feature-check
- name: Verify default iteration and migration surfaces
run: |
cargo test -p ito-cli --test feature_unavailable
cargo test -p ito-cli --test migrate_to_main_instruction
experimental_test:
name: Experimental all-features — test
needs: [autofix]
if: |
always()
&& (needs.autofix.result == 'success' || needs.autofix.result == 'skipped')
&& needs.autofix.outputs.pushed != 'true'
runs-on: withakay-selfhosted-arm
timeout-minutes: 25
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install build-essential
uses: ./.github/actions/cache-apt-pkgs
with:
packages: build-essential
- name: Setup toolchain (mise)
uses: jdx/mise-action@v3
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: . -> target
shared-key: ci-test-experimental
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Print environment diagnostics
run: |
mise install
mise trust
rustc -V
cargo -V
- name: Test backend and coordination implementations
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
run: make test-experimental
lint:
name: Shipping defaults — lint and docs
needs: [autofix]
if: |
always()
&& (needs.autofix.result == 'success' || needs.autofix.result == 'skipped')
&& needs.autofix.outputs.pushed != 'true'
# runs-on: withakay-selfhosted
runs-on: withakay-selfhosted-arm
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install build-essential
uses: ./.github/actions/cache-apt-pkgs
with:
packages: build-essential
- name: Setup toolchain (mise)
uses: jdx/mise-action@v3
- name: Install Rust components (rustfmt, clippy, rust-docs)
run: |
set -eu
mise install
mise trust
TOOLCHAIN="$(rustup show active-toolchain | awk '{print $1}')"
rustup component add --toolchain "$TOOLCHAIN" rustfmt clippy rust-docs
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: . -> target
shared-key: ci-lint
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: . -> target
- name: Verify config schema artifact is current
run: |
make config-schema-check
- name: Lint shipping CLI defaults
run: make lint
- name: Rust docs (warnings denied)
run: make docs
experimental_lint:
name: Experimental all-features — lint and docs
needs: [autofix]
if: |
always()
&& (needs.autofix.result == 'success' || needs.autofix.result == 'skipped')
&& needs.autofix.outputs.pushed != 'true'
runs-on: withakay-selfhosted-arm
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install build-essential
uses: ./.github/actions/cache-apt-pkgs
with:
packages: build-essential
- name: Setup toolchain (mise)
uses: jdx/mise-action@v3
- name: Install Rust components (rustfmt, clippy, rust-docs)
run: |
set -eu
mise install
mise trust
TOOLCHAIN="$(rustup show active-toolchain | awk '{print $1}')"
rustup component add --toolchain "$TOOLCHAIN" rustfmt clippy rust-docs
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: . -> target
shared-key: ci-lint-experimental
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Lint experimental all-features workspace
run: make lint-experimental
- name: Build experimental all-features docs
run: make docs-experimental
feature_matrix:
name: Independent feature matrix
needs: [autofix]
if: |
always()
&& (needs.autofix.result == 'success' || needs.autofix.result == 'skipped')
&& needs.autofix.outputs.pushed != 'true'
runs-on: withakay-selfhosted-arm
timeout-minutes: 45
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install build-essential
uses: ./.github/actions/cache-apt-pkgs
with:
packages: build-essential
- name: Setup toolchain (mise)
uses: jdx/mise-action@v3
- name: Install Rust components (clippy)
run: |
set -eu
mise install
mise trust
TOOLCHAIN="$(rustup show active-toolchain | awk '{print $1}')"
rustup component add --toolchain "$TOOLCHAIN" clippy
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: . -> target
shared-key: ci-feature-matrix
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Check, test, and lint all feature combinations
run: make feature-matrix-check
arch_guardrails:
name: Architecture Guardrails
needs: [autofix]
if: |
always()
&& (needs.autofix.result == 'success' || needs.autofix.result == 'skipped')
&& needs.autofix.outputs.pushed != 'true'
# runs-on: withakay-selfhosted
runs-on: withakay-selfhosted-arm
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install build-essential
uses: ./.github/actions/cache-apt-pkgs
with:
packages: build-essential
- name: Setup toolchain (mise)
uses: jdx/mise-action@v3
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: . -> target
shared-key: ci-arch-guardrails
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: . -> target
- name: Print environment diagnostics
run: |
mise install
mise trust
rustc -V
cargo -V
- name: Run architecture guardrails
run: make arch-guardrails
- name: Install cargo-deny
uses: taiki-e/install-action@cargo-deny
- name: Run cargo-deny (license/advisory checks)
run: cargo deny check
docs:
name: Shipping defaults — docs site
runs-on: withakay-selfhosted-arm
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install build-essential
uses: ./.github/actions/cache-apt-pkgs
with:
packages: build-essential
- name: Setup toolchain (mise)
uses: jdx/mise-action@v3
- name: Install Rust components (rust-docs)
run: |
set -eu
mise install
mise trust
TOOLCHAIN="$(rustup show active-toolchain | awk '{print $1}')"
rustup component add --toolchain "$TOOLCHAIN" rust-docs
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: . -> target
shared-key: ci-docs
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Build docs site
run: |
make docs-site-check
powershell:
name: PowerShell Scripts (parse)
needs: [autofix]
if: |
always()
&& (needs.autofix.result == 'success' || needs.autofix.result == 'skipped')
&& needs.autofix.outputs.pushed != 'true'
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Parse scripts/install.ps1
run: |
pwsh -NoProfile -Command '$t=@();$e=@();[System.Management.Automation.Language.Parser]::ParseFile("scripts/install.ps1",[ref]$t,[ref]$e) | Out-Null; if ($e.Count -gt 0) { $e | Format-List -Property Message,Extent | Out-String; exit 1 } else { "OK: scripts/install.ps1 parsed cleanly" }'
required-checks-pr:
name: All checks passed
# runs-on: ubuntu-latest
runs-on: withakay-selfhosted-arm
needs: [autofix, test, experimental_test, lint, experimental_lint, feature_matrix, arch_guardrails, docs, powershell]
if: always() && github.event_name == 'pull_request'
steps:
- name: Verify all checks passed
run: |
# If autofix pushed, downstream jobs were intentionally skipped.
# A new CI run will validate the fixed code — this run is superseded.
if [[ "${{ needs.autofix.outputs.pushed }}" == "true" ]]; then
echo "Autofix pushed changes — deferring checks to the new CI run."
exit 0
fi
if [[ "${{ needs.test.result }}" != "success" ]]; then
echo "Shipping-default test job failed"
exit 1
fi
if [[ "${{ needs.experimental_test.result }}" != "success" ]]; then
echo "Experimental all-features test job failed"
exit 1
fi
if [[ "${{ needs.lint.result }}" != "success" ]]; then
echo "Shipping-default lint job failed"
exit 1
fi
if [[ "${{ needs.experimental_lint.result }}" != "success" ]]; then
echo "Experimental all-features lint job failed"
exit 1
fi
if [[ "${{ needs.feature_matrix.result }}" != "success" ]]; then
echo "Independent feature matrix job failed"
exit 1
fi
if [[ "${{ needs.arch_guardrails.result }}" != "success" ]]; then
echo "Architecture guardrails job failed"
exit 1
fi
if [[ "${{ needs.docs.result }}" != "success" ]]; then
echo "Docs job failed"
exit 1
fi
if [[ "${{ needs.powershell.result }}" != "success" ]]; then
echo "PowerShell job failed"
exit 1
fi
echo "All required checks passed!"
required-checks-main:
name: All checks passed
# runs-on: withakay-selfhosted
runs-on: withakay-selfhosted-arm
needs: [test, experimental_test, lint, experimental_lint, feature_matrix, arch_guardrails, docs, powershell]
if: always() && github.event_name != 'pull_request'
steps:
- name: Verify all checks passed
run: |
if [[ "${{ needs.test.result }}" != "success" ]]; then
echo "Shipping-default test job failed"
exit 1
fi
if [[ "${{ needs.experimental_test.result }}" != "success" ]]; then
echo "Experimental all-features test job failed"
exit 1
fi
if [[ "${{ needs.lint.result }}" != "success" ]]; then
echo "Shipping-default lint job failed"
exit 1
fi
if [[ "${{ needs.experimental_lint.result }}" != "success" ]]; then
echo "Experimental all-features lint job failed"
exit 1
fi
if [[ "${{ needs.feature_matrix.result }}" != "success" ]]; then
echo "Independent feature matrix job failed"
exit 1
fi
if [[ "${{ needs.arch_guardrails.result }}" != "success" ]]; then
echo "Architecture guardrails job failed"
exit 1
fi
if [[ "${{ needs.docs.result }}" != "success" ]]; then
echo "Docs job failed"
exit 1
fi
if [[ "${{ needs.powershell.result }}" != "success" ]]; then
echo "PowerShell job failed"
exit 1
fi
echo "All required checks passed!"