Compose: default KZG env to raw params; set in CI

This commit is contained in:
andrussal 2025-12-08 03:38:39 +01:00
parent 387b89416e
commit 1c16498de5
2 changed files with 2 additions and 1 deletions

View File

@ -373,6 +373,7 @@ jobs:
NOMOS_TESTNET_IMAGE: ${{ env.NOMOS_TESTNET_IMAGE }}
COMPOSE_RUNNER_HOST: "127.0.0.1"
NOMOS_TIME_BACKEND: "monotonic"
NOMOS_KZGRS_PARAMS_PATH: "/kzgrs_test_params/kzgrs_test_params"
RUST_BACKTRACE: "1"
NOMOS_TESTS_TRACING: "true"
RUST_LOG: "info"

View File

@ -527,7 +527,7 @@ fn base_environment(cfgsync_port: u16) -> Vec<EnvEntry> {
let nomos_log_level = std::env::var("NOMOS_LOG_LEVEL").unwrap_or_else(|_| "info".to_string());
let time_backend = std::env::var("NOMOS_TIME_BACKEND").unwrap_or_else(|_| "monotonic".into());
let kzg_path = std::env::var("NOMOS_KZGRS_PARAMS_PATH")
.unwrap_or_else(|_| String::from("/kzgrs_test_params/pol/proving_key.zkey"));
.unwrap_or_else(|_| String::from("/kzgrs_test_params/kzgrs_test_params"));
vec![
EnvEntry::new("POL_PROOF_DEV_MODE", pol_mode),
EnvEntry::new("RUST_LOG", rust_log),