From dcffa683ab87166a9e9000493a71e1767fb090bc Mon Sep 17 00:00:00 2001 From: Thomas Ferrandiz Date: Wed, 29 Jun 2022 15:37:53 +0000 Subject: [PATCH] good to go --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a64dcbe883..29c18983d7 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,6 @@ e2e-test: bash_unit dist/flanneld-e2e-$(TAG)-$(ARCH).docker $(MAKE) -C images/iperf3 ARCH=$(ARCH) FLANNEL_DOCKER_IMAGE=$(REGISTRY):$(TAG)-$(ARCH) ./bash_unit dist/functional-test.sh FLANNEL_DOCKER_IMAGE=$(REGISTRY):$(TAG)-$(ARCH) ./bash_unit dist/functional-test-k8s.sh - exit 1 cover: # A single package must be given - e.g. 'PACKAGES=pkg/ip make cover' @@ -103,7 +102,7 @@ header-check: # Throw an error if gofmt finds problems. # "read" will return a failure return code if there is no output. This is inverted wth the "!" gofmt: - echo "########## Running gofmt... ##########" + # Running gofmt... docker run --rm -e CGO_ENABLED=$(CGO_ENABLED) -e GOARCH=$(ARCH) \ -u $(shell id -u):$(shell id -g) \ -v $(CURDIR):/go/src/github.com/flannel-io/flannel \ @@ -113,7 +112,7 @@ gofmt: ! gofmt -d $(PACKAGES) 2>&1 | read' verify-modules: - echo "########## Running verify-modules... ##########" + # Running verify-modules... docker run --rm -e CGO_ENABLED=$(CGO_ENABLED) -e GOARCH=$(ARCH) \ -u $(shell id -u):$(shell id -g) \ -v $(CURDIR):/go/src/github.com/flannel-io/flannel \