Skip to content

Commit 50a3f30

Browse files
committed
Fix wasmvm path in CI
1 parent 264d620 commit 50a3f30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
- "profiles/*"
9898
- store_artifacts:
9999
path: /tmp/logs
100-
100+
101101
test-system:
102102
executor: golang
103103
parallelism: 1
@@ -189,15 +189,15 @@ jobs:
189189
command: |
190190
IN_DOCKER=$(docker run --rm "cosmwasm/wasmd:${CIRCLE_SHA1}" /usr/bin/wasmd query wasm libwasmvm-version)
191191
echo "Runtime libwasmvm-version in docker: $IN_DOCKER"
192-
IN_GOMOD=$(go list -m github.com/CosmWasm/wasmvm | cut -d" " -f2 | cut -d"v" -f2)
192+
IN_GOMOD=$(go list -m github.com/CosmWasm/wasmvm/v2 | cut -d" " -f2 | cut -d"v" -f2)
193193
echo "wasmvm version in go.mod: $IN_GOMOD"
194194
if [[ "$IN_DOCKER" != "$IN_GOMOD" ]]; then
195195
echo "Mismatch of wasmvm versions detected"
196196
exit 1
197197
fi
198198
- when:
199199
condition:
200-
equal: [ main, << pipeline.git.branch >> ]
200+
equal: [main, << pipeline.git.branch >>]
201201
steps:
202202
- run:
203203
name: Push application Docker image to docker hub

0 commit comments

Comments
 (0)