From 27fdde911b381c59494a096109f35e73310820e2 Mon Sep 17 00:00:00 2001 From: andrussal Date: Sun, 7 Dec 2025 05:22:57 +0100 Subject: [PATCH] Compose CI: preflight KZG params presence --- .github/workflows/lint.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9975ad3..70857c7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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