We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 049b099 commit ab784a4Copy full SHA for ab784a4
Makefile
@@ -1,6 +1,3 @@
1
-BUILD_REQUIRE_GO_MAJOR ?= 1
2
-BUILD_REQUIRE_GO_MINOR ?= 20
3
-
4
GO = go
5
GOBUILD = $(GO) build
6
GOTEST = $(GO) test
@@ -55,7 +52,7 @@ clean: clean-release-dir clean-debian clean-rpm
55
52
#
56
53
57
54
.PHONY: binary
58
-binary: goversion
+binary:
59
$(GOBUILD) $(LD_OPTS) -o $(BINARY_NAME)
60
61
.PHONY: build
@@ -70,7 +67,7 @@ lint:
70
67
golangci-lint run
71
68
72
69
.PHONY: test
73
-test: goversion
+test:
74
@$(GOTEST) $(LD_OPTS) ./...
75
76
.PHONY: func-tests
@@ -124,7 +121,7 @@ release: clean tarball
124
121
125
122
126
123
.PHONY: platform-all
127
-platform-all: goversion clean
+platform-all: clean
128
python3 .github/release.py run-build $(BINARY_NAME)
129
130
include mk/goversion.mk
mk/goversion.mk
0 commit comments