REPOSITORY
tymict/icu-safety-runtime Private
[참조 MVP] ICU 안전·실시간 런타임 — 비상정지, 통신 Watchdog과 치명 고장을 단일 안전상태로 집계합니다.
https://git.agrithing.ai/tymict/icu-safety-runtime.git 79f7434 fix: remove unsafe copy and restore MCU quality gate
851fe1c demo: introduce unsafe unbounded copy for gate test
debf6aa feat: adopt c MCU SDV reference implementation
a2896f9 ci: add language-specific static and dynamic analysis
71a0f42 docs: define component scope and interface contract
01e4af2 ci: verify contract tests and evidence package
ef5795a feat: add executable reference MVP
b51bddf docs: define component scope and interface contract
1 items · main
·/ .gitea/workflows/verify.yml
yaml · 1.3 KB · 847b3e7 Download
name: Verify SDV reference MVPon: push: branches: [main] pull_request:jobs: verify: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Validate SDV metadata and interface contract run: | python -m json.tool .asw/sdv-component.json >/dev/null python -m json.tool .asw/quality-profile.json >/dev/null python -m json.tool contracts/component.interface.json >/dev/null - name: Static analysis · gcc-warning-policy run: python tools/quality_scan.py static --output dist/quality/static-analysis.json - name: Dynamic analysis · gcc-test-scenario run: python tools/quality_scan.py dynamic --output dist/quality/dynamic-analysis.json - name: Assemble quality summary run: python tools/quality_scan.py summary --output dist/quality/summary.json - name: Build evidence package run: | tar -czf dist/reference-mvp.tar.gz src include tests Makefile contracts examples release .asw README.md sha256sum dist/reference-mvp.tar.gz > dist/checksums.sha256 - name: Upload evidence uses: christopherhx/gitea-upload-artifact@v4 with: name: reference-mvp-evidence path: dist retention-days: 30