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 86c3648 commit e8808e4Copy full SHA for e8808e4
Makefile
@@ -25,7 +25,7 @@ endif
25
all: manager
26
27
# Run tests
28
-test:
+test: $(PKG_CONFIG_PATH)
29
PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) \
30
LD_LIBRARY_PATH=$(LD_LIBRARY_PATH) \
31
go test --tags $(GO_TAGS) ./... -coverprofile cover.out
@@ -101,6 +101,9 @@ docker-build:
101
docker-push:
102
docker push ${IMG}
103
104
+$(PKG_CONFIG_PATH):
105
+ make -C hack/libgit2-static/
106
+
107
# Find or download controller-gen
108
controller-gen:
109
ifeq (, $(shell which controller-gen))
@@ -117,7 +120,6 @@ else
117
120
CONTROLLER_GEN=$(shell which controller-gen)
118
121
endif
119
122
-
123
gen-crd-api-reference-docs: ## Find or download gen-crd-api-reference-docs
124
ifeq (, $(shell which gen-crd-api-reference-docs))
125
@{ \
0 commit comments