You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per title, go mod verify breaks on v14.0.0 / v14.x.
❯ go mod verify
github.com/osmosis-labs/osmosis/osmoutils : missing ziphash: open hash: no such file or directory
github.com/osmosis-labs/osmosis/x/ibc-hooks : missing ziphash: open hash: no such file or directory
github.com/osmosis-labs/osmosis/v14 : missing ziphash: open hash: no such file or directory
Steps to reproduce
git checkout v14.x
go mod verify
go version in 1.19
The text was updated successfully, but these errors were encountered:
If this is "expected" behavior we should change the Makefile logic as the go mod verify is a dependency of the build target and it gets triggered with the -B option:
❯ make build -Bn
echo"--> Ensure dependencies have not been modified"
go mod verify
mkdir -p /github.com/osmosis-labs/osmosis/build/
GOWORK=off go build -mod=readonly -tags "netgo ledger" -ldflags '-X github.com/cosmos/cosmos-sdk/version.Name=osmosis -X github.com/cosmos/cosmos-sdk/version.AppName=osmosisd -X github.com/cosmos/cosmos-sdk/version.Version=14.0.0-5-g2521ea2f3 -X github.com/cosmos/cosmos-sdk/version.Commit=2521ea2f38c568ff70cccb540d69f30634b58580 -X "github.com/cosmos/cosmos-sdk/version.BuildTags=netgo,ledger" -w -s' -trimpath -o /github.com/osmosis-labs/osmosis/build/ ./...
$ git checkout v14.x
Branch 'v14.x' set up to track remote branch 'v14.x' from 'origin'.
Switched to a new branch 'v14.x'
$ go mod verify
all modules verified
As per title,
go mod verify
breaks onv14.0.0
/v14.x
.Steps to reproduce
go
version in1.19
The text was updated successfully, but these errors were encountered: