fix: proto-breakage (#4506)

* fix: fix proto-breakage

- this is amed to fix proto breakage for consumers

Signed-off-by: Marko Baricevic <marbar3778@yahoo.com>

* fix for importing third_party everywhere

* undo change

* test breakage change

* test ssh

* test https

* change ssh to https

* fix phony
This commit is contained in:
mergify[bot]
2020-03-05 08:41:36 +00:00
committed by GitHub
parent 4936b23dae
commit 4c8e3c8145
7 changed files with 15 additions and 29 deletions

View File

@@ -4,6 +4,7 @@ OUTPUT?=build/tendermint
BUILD_TAGS?='tendermint'
LD_FLAGS = -X github.com/tendermint/tendermint/version.GitCommit=`git rev-parse --short=8 HEAD` -s -w
BUILD_FLAGS = -mod=readonly -ldflags "$(LD_FLAGS)"
HTTPS_GIT := https://github.com/tendermint/tendermint.git
all: check build test install
.PHONY: all
@@ -57,9 +58,13 @@ proto-lint:
.PHONY: proto-lint
proto-check-breaking:
@buf check breaking --against-input '.git#branch=master'
@buf check breaking --against-input ".git#branch=master"
.PHONY: proto-check-breaking
proto-check-breaking-ci:
@buf check breaking --against-input "$(HTTPS_GIT)#branch=master"
.PHONY: proto-check-breaking-ci
###############################################################################
### Build ABCI ###
###############################################################################