mirror of
https://github.com/allaunthefox/SilverSight.git
synced 2026-08-20 15:07:29 +00:00
fix: CI YAML syntax, multi-line string quoting
This commit is contained in:
parent
e6d5a0a8d4
commit
07d75e1fb4
1 changed files with 3 additions and 11 deletions
14
.github/workflows/anti-smuggle.yml
vendored
14
.github/workflows/anti-smuggle.yml
vendored
|
|
@ -34,18 +34,10 @@ jobs:
|
||||||
|
|
||||||
- name: Layer 2 — Pipeline Emission
|
- name: Layer 2 — Pipeline Emission
|
||||||
run: |
|
run: |
|
||||||
python3 python/build_pist_matrices_250.py \
|
python3 python/build_pist_matrices_250.py --predictions data/rrc_pist_predictions_250_v1.json
|
||||||
--predictions data/rrc_pist_predictions_250_v1.json
|
python3 python/build_manifold.py --predictions data/rrc_pist_predictions_250_v1.json
|
||||||
python3 python/build_manifold.py \
|
|
||||||
--predictions data/rrc_pist_predictions_250_v1.json
|
|
||||||
lake build
|
lake build
|
||||||
lake exe rrc-emit-fixture 2>/dev/null | python3 -c "
|
lake exe rrc-emit-fixture 2>/dev/null | python3 -c 'import json,sys; d=json.load(sys.stdin); assert d["bundle_receipt_valid"]; assert d["avm_canaries_passed"]; print(f"OK: {d[\"summary\"][\"total\"]} rows, {d[\"summary\"][\"passed_alignment\"]} passed")'
|
||||||
import json,sys
|
|
||||||
d=json.load(sys.stdin)
|
|
||||||
assert d['bundle_receipt_valid'] == True, 'receipt invalid'
|
|
||||||
assert d['avm_canaries_passed'] == True, 'canaries failed'
|
|
||||||
print(f'OK: {d[\"summary\"][\"total\"]} rows, {d[\"summary\"][\"passed_alignment\"]} passed')
|
|
||||||
"
|
|
||||||
|
|
||||||
- name: Layer 3 — CAS/SMT Grounding
|
- name: Layer 3 — CAS/SMT Grounding
|
||||||
run: python3 scripts/verify_with_sympy.py
|
run: python3 scripts/verify_with_sympy.py
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue