Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/full-parity-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ jobs:
--spec parity/example_output_spec.yml
python tools/notebooks/run_notebooks.py --group all --timeout 900

- name: Generate class equivalence inventory/report artifacts
run: |
mkdir -p output/parity
python tools/parity/generate_class_equivalence_inventory.py \
--matlab-root /tmp/upstream-nstat \
--out-inventory output/parity/class_equivalence_inventory.json \
--out-report output/parity/class_equivalence_report.json

- name: Generate full validation PDF
run: |
python tools/reports/generate_validation_pdf.py \
Expand Down Expand Up @@ -101,6 +109,8 @@ jobs:
parity/parity_gap_report.json
parity/method_probe_report.json
parity/method_closure_sprint.md
output/parity/class_equivalence_inventory.json
output/parity/class_equivalence_report.json
if-no-files-found: warn

- name: Upload validation PDF artifact
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/parity-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ jobs:
--report parity/function_example_alignment_report.json \
--spec parity/example_output_spec.yml

- name: Generate class equivalence inventory/report artifacts
run: |
mkdir -p output/parity
python tools/parity/generate_class_equivalence_inventory.py \
--matlab-root /tmp/upstream-nstat \
--out-inventory output/parity/class_equivalence_inventory.json \
--out-report output/parity/class_equivalence_report.json

- name: Ensure parity artifacts are synchronized
run: |
python tools/parity/sync_parity_artifacts.py \
Expand Down Expand Up @@ -103,4 +111,6 @@ jobs:
parity/function_example_alignment_report.json
parity/numeric_drift_report.json
parity/performance_parity_report.json
output/parity/class_equivalence_inventory.json
output/parity/class_equivalence_report.json
if-no-files-found: warn
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ PARITY_SPEC.md
CANONICAL_VALIDATION_ARTIFACTS.md
DISCREPANCIES.md
parity/CYCLE_VALIDATION_CHECKLIST.md
parity/class_equivalence_inventory.json
parity/class_equivalence_report.json
parity/cycle_validation/
parity/matlab_reference_checkout.json
Loading