We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go.mod
libwasmvm_muslc.a
We provide the wasm vm repo to the build dockerfiles by pulling the wasm version from the chain's go.mod file.
CosmWasm v2 package syntax contains the v2 (which is valid go packaging syntax), see the below link for latest Neutron as an example:
v2
https://github.com/neutron-org/neutron/blob/329dcfed29fbef9a6b9db9920f430eb48b2d5cb1/go.mod#L17C2-L17C38
Heighliner parses thhis and reports the following:
WasmVM from go.mod: repo: github.com/CosmWasm/wasmvm/v2, version: v2.0.0
This is not a valid URL to the CosmWasm repo, the v2 needs to be removed. This leads to failure during dockerfile build like:
---> Running in f3e3ce4847a9 + uname -m + export 'ARCH=x86_64' + '[' '!' -z 'github.com/CosmWasm/wasmvm/v2 v2.0.0' ] + echo github.com/CosmWasm/wasmvm/v2 v2.0.0 + awk '{print $1}' + WASMVM_REPO=github.com/CosmWasm/wasmvm/v2 + echo github.com/CosmWasm/wasmvm/v2 v2.0.0 + awk '{print $2}' + WASMVM_VERS=v2.0.0 + uname -m + wget -O /lib/libwasmvm_muslc.a https://github.com/CosmWasm/wasmvm/v2/releases/download/v2.0.0/libwasmvm_muslc.x86_64.a Connecting to github.com (140.82.112.3:443) wget: server returned error: HTTP/1.1 404 Not Found
We will need to build an alternate CosmWasm v2 URL parser here:
heighliner/builder/builder.go
Lines 245 to 246 in b0b2781
The text was updated successfully, but these errors were encountered:
AntiTyping
pharr117
Successfully merging a pull request may close this issue.
We provide the wasm vm repo to the build dockerfiles by pulling the wasm version from the chain's go.mod file.
CosmWasm v2 package syntax contains the
v2
(which is valid go packaging syntax), see the below link for latest Neutron as an example:https://github.com/neutron-org/neutron/blob/329dcfed29fbef9a6b9db9920f430eb48b2d5cb1/go.mod#L17C2-L17C38
Heighliner parses thhis and reports the following:
This is not a valid URL to the CosmWasm repo, the v2 needs to be removed. This leads to failure during dockerfile build like:
We will need to build an alternate CosmWasm v2 URL parser here:
heighliner/builder/builder.go
Lines 245 to 246 in b0b2781
The text was updated successfully, but these errors were encountered: