revert proto changes
This commit is contained in:
parent
db39408c44
commit
a495e7daee
|
@ -11,7 +11,7 @@ executors:
|
|||
AWS_REGION: us-east-1
|
||||
protoc:
|
||||
docker:
|
||||
- image: bufbuild/buf
|
||||
- image: tendermintdev/docker-protoc
|
||||
|
||||
commands:
|
||||
make:
|
||||
|
@ -77,6 +77,16 @@ jobs:
|
|||
paths:
|
||||
- ".git"
|
||||
|
||||
proto:
|
||||
executor: protoc
|
||||
steps:
|
||||
- make:
|
||||
target: protoc-gen-gocosmos
|
||||
description: "Generate go plugin for protoc"
|
||||
- make:
|
||||
target: proto-gen proto-lint proto-check-breaking
|
||||
description: "Lint and verify Protocol Buffer definitions"
|
||||
|
||||
test-sim-multi-seed-long:
|
||||
executor: golang
|
||||
steps:
|
||||
|
@ -172,6 +182,9 @@ workflows:
|
|||
- test-cover:
|
||||
requires:
|
||||
- setup-dependencies
|
||||
- proto:
|
||||
requires:
|
||||
- setup-dependencies
|
||||
- upload-coverage:
|
||||
requires:
|
||||
- test-cover
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
name: Proto check
|
||||
on: [pull_request]
|
||||
jobs:
|
||||
proto-checks:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: docker-practice/actions-setup-docker@master
|
||||
- run: pwd
|
||||
# - name: lint
|
||||
# run: docker run -v pwd:/workspace --workdir /workspace bufbuild/buf check lint --error-format=json
|
||||
# - name: check-breakage
|
||||
# run: docker run -v pwd:/workspace --workdir /workspace bufbuild/buf --against-input .git#branch=master
|
Loading…
Reference in New Issue