-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
72 lines (61 loc) · 1.93 KB
/
Makefile
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
SHELL :=/bin/bash
all: build
.PHONY: all
# Include the library makefile
include $(addprefix ./vendor/github.com/openshift/build-machinery-go/make/, \
golang.mk \
targets/openshift/deps-gomod.mk \
targets/openshift/images.mk \
targets/openshift/bindata.mk \
targets/openshift/codegen.mk \
)
# Codegen module needs setting these required variables
CODEGEN_OUTPUT_PACKAGE :=github.com/openshift/aws-ebs-csi-driver-operator/pkg/generated
CODEGEN_API_PACKAGE :=github.com/openshift/aws-ebs-csi-driver-operator/pkg/apis
CODEGEN_GROUPS_VERSION :=operator:v1alpha1
define run-codegen
"$(SHELL)" \
"$(CODEGEN_PKG)/generate-groups.sh" \
"$(CODEGEN_GENERATORS)" \
"$(CODEGEN_OUTPUT_PACKAGE)" \
"$(CODEGEN_API_PACKAGE)" \
"$(CODEGEN_GROUPS_VERSION)" \
--output-base $(CODEGEN_OUTPUT_BASE) \
--go-header-file $(CODEGEN_GO_HEADER_FILE) \
$1
endef
# Run core verification and all self contained tests.
#
# Example:
# make check
check: | verify test-unit
.PHONY: check
IMAGE_REGISTRY?=registry.svc.ci.openshift.org
# This will call a macro called "build-image" which will generate image specific targets based on the parameters:
# $0 - macro name
# $1 - target name
# $2 - image ref
# $3 - Dockerfile path
# $4 - context directory for image build
# It will generate target "image-$(1)" for building the image and binding it as a prerequisite to target "images".
$(call build-image,aws-ebs-csi-driver-operator,$(IMAGE_REGISTRY)/ocp/4.4:aws-ebs-csi-driver-operator,./Dockerfile.rhel7,.)
# generate bindata targets
# $0 - macro name
# $1 - target suffix
# $2 - input dirs
# $3 - prefix
# $4 - pkg
# $5 - output
$(call add-bindata,generated,./assets/...,assets,generated,pkg/generated/bindata.go)
clean:
$(RM) aws-ebs-csi-driver-operator
.PHONY: clean
GO_TEST_PACKAGES :=./pkg/... ./cmd/...
# Run e2e tests.
#
# Example:
# make test-e2e
test-e2e: GO_TEST_PACKAGES :=./test/e2e/...
test-e2e: GO_TEST_FLAGS += -v
test-e2e: test-unit
.PHONY: test-e2e