Skip to content

Commit c798f8b

Browse files
changes
Signed-off-by: Abdur Rehman <[email protected]>
1 parent a740e3b commit c798f8b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Makefile

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ verify-bom:
4444
verify-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
5252
verify-shellcheck:
@@ -216,7 +216,7 @@ test:
216216

217217
test-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

222222
test-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

Comments
 (0)