Skip to content

Simplify buf binary install #1814

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

Merged
merged 1 commit into from
May 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .bingo/.gitignore

This file was deleted.

14 changes: 0 additions & 14 deletions .bingo/README.md

This file was deleted.

25 changes: 0 additions & 25 deletions .bingo/Variables.mk

This file was deleted.

5 changes: 0 additions & 5 deletions .bingo/buf.mod

This file was deleted.

336 changes: 0 additions & 336 deletions .bingo/buf.sum

This file was deleted.

1 change: 0 additions & 1 deletion .bingo/go.mod

This file was deleted.

12 changes: 0 additions & 12 deletions .bingo/variables.env

This file was deleted.

7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.

include .bingo/Variables.mk
include Makefile.common

BUF := $(FIRST_GOPATH)/bin/buf
BUF_VERSION ?= v1.39.0

$(BUF):
go install github.com/bufbuild/buf/cmd/buf@$(BUF_VERSION)

.PHONY: deps
deps:
$(MAKE) common-deps
Expand Down
Loading