forked from kubernetes-sigs/cloud-provider-azure
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathopenshift.mk
39 lines (31 loc) · 1.06 KB
/
openshift.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
## --------------------------------------
## Openshift specific make targets,
## intended to be included in root Makefile in this repository
## --------------------------------------
azure-cloud-controller-manager:
openshift-hack/build-go.sh cloud-controller-manager
.PHONY: azure-cloud-controller-manager
azure-cloud-node-manager:
openshift-hack/build-go.sh cloud-node-manager
.PHONY: azure-cloud-node-manager
azure-acr-credential-provider:
openshift-hack/build-go.sh acr-credential-provider
.PHONY: azure-acr-credential-provider
binaries: azure-cloud-controller-manager azure-cloud-node-manager azure-acr-credential-provider
.PHONY: binaries
verify-history:
openshift-hack/verify-history.sh
.PHONY: verify-history
# due to the way the linter binary packages are included in builds for OpenShift,
# we only want to run the linting target if the binary is defined.
have_linter = $(LINTER)
ifneq ($(have_linter),)
linter_target = lint
else
linter_target =
endif
verify: $(linter_target)
.PHONY: verify
test-unit-ci:
openshift-hack/test-unit-ci.sh
.PHONY: test-unit-ci