-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
Fix broken proto/e2e/lint workflows #33
Conversation
@@ -1,13 +0,0 @@ | |||
build: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete buf.yaml
under root, in favor of proto/buf.yaml
f40fab5
to
2fc5a0d
Compare
@@ -120,8 +120,8 @@ mockery: | |||
|
|||
#? check-proto-deps: Check protobuf deps | |||
check-proto-deps: | |||
ifeq (,$(shell which protoc-gen-gogofaster)) | |||
@go install github.com/cosmos/gogoproto/protoc-gen-gogofaster@latest | |||
ifeq (,$(shell which protoc-gen-gocosmos)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gogofaster
is outdated. gocosmos
is used by latest
@@ -2,9 +2,7 @@ syntax = "proto3"; | |||
package dydxcometbft.clob; | |||
|
|||
import "gogoproto/gogo.proto"; | |||
import "cosmos_proto/cosmos.proto"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Proto lint previously failing
7a8e25c
to
7be6e39
Compare
Fix proto/e2e/lint workflows that have been broken for a while. All changes in this PR should be discarded once we sync up to latest
cometbft
versions.