ac75faa0cc
CI / build-and-test (push) Has been cancelled
- E4B-MarkBase model (42 layers, 4.4GB) loaded successfully - All Phase 1-6 tests passed (model loading, forward pass, vision/audio towers, token generation, performance) - All stress tests passed (5/5 in 127.6s) - Concurrent inference - Memory stress (67.5 tok/s, 0 NaN) - Continuous generation - Batch processing - Long-running stability - Swift Metal inference engine with multimodal support
29 lines
471 B
YAML
29 lines
471 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build-and-test:
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Swift
|
|
uses: swift-actions/setup-swift@v1
|
|
with:
|
|
swift-version: '6.0'
|
|
|
|
- name: Build
|
|
run: swift build -v
|
|
|
|
- name: Run tests
|
|
run: swift test -v
|
|
|
|
- name: Check code format
|
|
run: swiftformat --lint . || true
|