From 5a3ed9b0508525feb0befe78be3560a8c8ad5b8b Mon Sep 17 00:00:00 2001 From: Till Ziegler Date: Thu, 27 Jun 2024 13:35:11 +0200 Subject: [PATCH] fix: use correct net and wasmvm download for upgrade test --- contrib/updates/Dockerfile.old | 4 ++-- contrib/updates/docker-compose.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/updates/Dockerfile.old b/contrib/updates/Dockerfile.old index 95defca46..5e4e6cd11 100644 --- a/contrib/updates/Dockerfile.old +++ b/contrib/updates/Dockerfile.old @@ -52,8 +52,8 @@ RUN --mount=type=cache,target=/root/.cache/go-build \ # Cosmwasm - Download correct libwasmvm version and verify checksum RUN set -eux &&\ - WASMVM_VERSION=$(go list -m github.com/CosmWasm/wasmvm | cut -d ' ' -f 5) && \ - WASMVM_DOWNLOADS="https://github.com/classic-terra/wasmvm/releases/download/${WASMVM_VERSION}"; \ + WASMVM_VERSION=$(go list -m github.com/CosmWasm/wasmvm | cut -d ' ' -f 2) && \ + WASMVM_DOWNLOADS="https://github.com/CosmWasm/wasmvm/releases/download/${WASMVM_VERSION}"; \ wget ${WASMVM_DOWNLOADS}/checksums.txt -O /tmp/checksums.txt; \ if [ ${BUILDPLATFORM} = "linux/amd64" ]; then \ WASMVM_URL="${WASMVM_DOWNLOADS}/libwasmvm_muslc.x86_64.a"; \ diff --git a/contrib/updates/docker-compose.yml b/contrib/updates/docker-compose.yml index 9a8a9d5ed..57cef82af 100644 --- a/contrib/updates/docker-compose.yml +++ b/contrib/updates/docker-compose.yml @@ -139,4 +139,4 @@ networks: driver: default config: - - subnet: 192.168.10.0/16 \ No newline at end of file + subnet: 192.168.10.0/24 \ No newline at end of file