Skip to content

Commit

Permalink
Makefile: Trying resolve issue with go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
geaaru committed May 23, 2024
1 parent bcf56fd commit 92d9891
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ fmt:

.PHONY: test
test:
GO111MODULE=off go get github.com/onsi/ginkgo/v2/ginkgo
GO111MODULE=off go get github.com/onsi/gomega/...
go get github.com/onsi/ginkgo/v2/ginkgo
go get github.com/onsi/gomega/...
ginkgo -r -flake-attempts 3 ./...

.PHONY: coverage
Expand All @@ -39,10 +39,10 @@ clean:
deps:
go env
# Installing dependencies...
GO111MODULE=off go get golang.org/x/lint/golint
GO111MODULE=off go get github.com/mitchellh/gox
GO111MODULE=on go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo
GO111MODULE=off go get github.com/onsi/gomega/...
go get golang.org/x/lint/golint
go get github.com/mitchellh/gox
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo
go get github.com/onsi/gomega/...
ginkgo version

.PHONY: build
Expand Down

0 comments on commit 92d9891

Please sign in to comment.