@@ -8,7 +8,6 @@ BUILD_DIR ?= .build
88GOTOOLS_GOPATH ?= $(BUILD_DIR ) /gotools
99GOTOOLS_BINDIR ?= $(firstword $(subst :, ,$(GOPATH ) ) ) /bin
1010GOROOT ?= $(firstword $(subst :, ,$(GOPATH ) )
11- GO111MODULE=off
1211
1312# go tool->path mapping
1413go.fqp.counterfeiter := github.com/maxbrunsfeld/counterfeiter
@@ -23,16 +22,16 @@ gotools-clean:
2322 -@rm -rf $(BUILD_DIR ) /gotools
2423
2524# Special override for ginkgo since we want to use the version vendored with the project
26- gotool.ginkgo: GINKGO_VERSION ?= "v1.10.2 "
25+ gotool.ginkgo: GINKGO_VERSION ?= "v1.11.0 "
2726gotool.ginkgo:
2827 @GOPATH=$(abspath $(GOTOOLS_GOPATH ) ) go get -d -u github.com/onsi/ginkgo
2928 @git -C $(abspath $(GOTOOLS_GOPATH ) ) /src/github.com/onsi/ginkgo checkout -q $(GINKGO_VERSION )
3029 @echo "Building github.com/onsi/ginkgo/ginkgo $(GINKGO_VERSION ) -> ginkgo"
31- @GOPATH=$(abspath $(GOTOOLS_GOPATH ) ) GOBIN=$(abspath $(GOTOOLS_BINDIR ) ) go install -ldflags="-X main.version=$(GINKGO_VERSION ) -X main.buildDate=$$(date '+%Y-%m-%d' ) " github.com/onsi/ginkgo/ginkgo
30+ @GOPATH=$(abspath $(GOTOOLS_GOPATH ) ) GOBIN=$(abspath $(GOTOOLS_BINDIR ) ) GO111MODULE=on go install -ldflags="-X main.version=$(GINKGO_VERSION ) -X main.buildDate=$$(date '+%Y-%m-%d' ) " github.com/onsi/ginkgo/ginkgo
3231# reset to a branch, so that the next time this target is run, go get starts on a branch, as it must
3332 @git -C $(abspath $(GOTOOLS_GOPATH ) ) /src/github.com/onsi/ginkgo/ checkout -q master
3433
35- gotool.counterfeiter: COUNTERFEITER_VERSION ?= "v6.0.1 "
34+ gotool.counterfeiter: COUNTERFEITER_VERSION ?= "v6.3.0 "
3635gotool.counterfeiter:
3736 @GOPATH=$(abspath $(GOTOOLS_GOPATH ) ) go get -d -u ${go.fqp.counterfeiter}
3837 @git -C $(abspath $(GOTOOLS_GOPATH ) ) /src/${go.fqp.counterfeiter} checkout -q $(COUNTERFEITER_VERSION )
0 commit comments