fix: add dep:serde to subxt-signer and skip wasm build for eth-rpc

- Add dep:serde to pezkuwi-subxt-signer serde feature (fixes docs workflow)
- Add SKIP_WASM_BUILD=1 to eth-rpc Dockerfile (workaround for serde_core + build-std conflict)
- Add zombienet-alpha.toml for 4-validator testnet configuration
This commit is contained in:
2026-01-04 22:17:07 +03:00
parent b7e61e8048
commit e30bafef0c
3 changed files with 54 additions and 1 deletions
@@ -11,7 +11,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN cargo fetch
RUN cargo build --locked --profile production -p pezpallet-revive-eth-rpc --bin eth-rpc
# SKIP_WASM_BUILD=1 avoids serde_core + build-std conflict (upstream issue: serde-rs/serde#3021)
RUN SKIP_WASM_BUILD=1 cargo build --locked --profile production -p pezpallet-revive-eth-rpc --bin eth-rpc
FROM docker.io/parity/base-bin:latest
COPY --from=builder /pezkuwi/target/production/eth-rpc /usr/local/bin