Compose CI: preflight KZG params presence

This commit is contained in:
andrussal 2025-12-07 05:22:57 +01:00
parent 08ee260b13
commit 27fdde911b

View File

@ -374,6 +374,12 @@ jobs:
NOMOS_LOG_DIR: "${{ github.workspace }}/.tmp/compose-logs"
run: |
mkdir -p "$TMPDIR"
# Pre-flight: ensure KZG params exist where compose will mount them.
if [ ! -f testing-framework/assets/stack/kzgrs_test_params/proving_key.zkey ]; then
echo "KZG params missing at testing-framework/assets/stack/kzgrs_test_params/proving_key.zkey" >&2
ls -l testing-framework/assets/stack/kzgrs_test_params || true
exit 1
fi
cargo run -p runner-examples --bin compose_runner -- --nocapture
- name: Collect compose logs