Skip to content

Commit

Permalink
fix: downgrade bingo mutagen
Browse files Browse the repository at this point in the history
  • Loading branch information
fschade committed Mar 7, 2024
1 parent cc93110 commit 358ffb1
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 5 deletions.
12 changes: 9 additions & 3 deletions .bingo/Variables.mk
Expand Up @@ -65,11 +65,17 @@ $(MOCKERY): $(BINGO_DIR)/mockery.mod
@echo "(re)installing $(GOBIN)/mockery-v2.22.1"
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=mockery.mod -o=$(GOBIN)/mockery-v2.22.1 "github.com/vektra/mockery/v2"

MUTAGEN := $(GOBIN)/mutagen-v0.17.5
MUTAGEN := $(GOBIN)/mutagen-v0.14.0
$(MUTAGEN): $(BINGO_DIR)/mutagen.mod
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
@echo "(re)installing $(GOBIN)/mutagen-v0.17.5"
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=mutagen.mod -o=$(GOBIN)/mutagen-v0.17.5 "github.com/mutagen-io/mutagen/cmd/mutagen"
@echo "(re)installing $(GOBIN)/mutagen-v0.14.0"
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=mutagen.mod -o=$(GOBIN)/mutagen-v0.14.0 "github.com/mutagen-io/mutagen/cmd/mutagen"

PIGEON := $(GOBIN)/pigeon-v1.2.1
$(PIGEON): $(BINGO_DIR)/pigeon.mod
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
@echo "(re)installing $(GOBIN)/pigeon-v1.2.1"
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=pigeon.mod -o=$(GOBIN)/pigeon-v1.2.1 "github.com/mna/pigeon"

PROTOC_GEN_DOC := $(GOBIN)/protoc-gen-doc-v1.5.1
$(PROTOC_GEN_DOC): $(BINGO_DIR)/protoc-gen-doc.mod
Expand Down
2 changes: 1 addition & 1 deletion .bingo/mutagen.mod
Expand Up @@ -4,4 +4,4 @@ go 1.17

replace k8s.io/apimachinery v0.21.3 => github.com/mutagen-io/apimachinery v0.21.3-mutagen1

require github.com/mutagen-io/mutagen v0.17.5 // cmd/mutagen
require github.com/mutagen-io/mutagen v0.14.0 // cmd/mutagen

0 comments on commit 358ffb1

Please sign in to comment.