@@ -44,9 +44,9 @@ verify-bom:
4444verify-dep :
4545 PASSES=" dep" ./test.sh
4646
47- .PHONY : verify-lint
48- verify-lint : install-golangci-lint
49- PASSES=" lint" ./test.sh
47+ # .PHONY: verify-lint
48+ # verify-lint: install-golangci-lint
49+ # PASSES="lint" ./test.sh
5050
5151.PHONY : verify-shellcheck
5252verify-shellcheck :
@@ -216,7 +216,7 @@ test:
216216
217217test-smoke :
218218 $(info log-file: test-$(TEST_SUFFIX ) .log)
219- PASSES=" fmt bom dep build unit" ./test.sh 2< & 1 | tee test-$(TEST_SUFFIX ) .log
219+ PASSES=" bom dep build unit" ./test.sh 2< & 1 | tee test-$(TEST_SUFFIX ) .log
220220 ! grep " FAIL:" test-$(TEST_SUFFIX ) .log
221221
222222test-full :
@@ -359,13 +359,13 @@ docker-static-ip-test-certs-metrics-proxy-run:
359359
360360
361361# Tools
362- GOLANGCI_LINT_VERSION = $(shell cd tools/mod && go list -m -f {{.Version}} github.com/golangci/golangci-lint)
363- .PHONY : install-golangci-lint
364- install-golangci-lint :
365- @if ! command -v golangci-lint > /dev/null; then \
366- echo " Installing golangci-lint $( GOLANGCI_LINT_VERSION) ..." ; \
367- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $$ GOPATH/bin $(GOLANGCI_LINT_VERSION ) ; \
368- fi
362+ # GOLANGCI_LINT_VERSION = $(shell cd tools/mod && go list -m -f {{.Version}} github.com/golangci/golangci-lint)
363+ # .PHONY: install-golangci-lint
364+ # install-golangci-lint:
365+ # @if ! command -v golangci-lint > /dev/null; then \
366+ # echo "Installing golangci-lint $(GOLANGCI_LINT_VERSION)..."; \
367+ # curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $$GOPATH/bin $(GOLANGCI_LINT_VERSION); \
368+ # fi
369369
370370# Example:
371371# make build-docker-test
0 commit comments