We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ea9d35 commit 0d25513Copy full SHA for 0d25513
Makefile.common
@@ -62,10 +62,10 @@ SKIP_GOLANGCI_LINT :=
62
GOLANGCI_LINT :=
63
GOLANGCI_LINT_OPTS ?=
64
GOLANGCI_LINT_VERSION ?= v1.55.2
65
-# golangci-lint only supports linux, darwin and windows platforms on i386/amd64.
+# golangci-lint only supports linux, darwin and windows platforms on i386/amd64/arm64.
66
# windows isn't included here because of the path separator being different.
67
ifeq ($(GOHOSTOS),$(filter $(GOHOSTOS),linux darwin))
68
- ifeq ($(GOHOSTARCH),$(filter $(GOHOSTARCH),amd64 i386))
+ ifeq ($(GOHOSTARCH),$(filter $(GOHOSTARCH),amd64 i386 arm64))
69
# If we're in CI and there is an Actions file, that means the linter
70
# is being run in Actions, so we don't need to run it here.
71
ifneq (,$(SKIP_GOLANGCI_LINT))
0 commit comments