-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathMakefile
More file actions
71 lines (59 loc) · 2.04 KB
/
Makefile
File metadata and controls
71 lines (59 loc) · 2.04 KB
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
all: build
.PHONY: all
# Include the library makefile
include $(addprefix ./vendor/github.com/openshift/build-machinery-go/make/, \
targets/openshift/deps-gomod.mk \
targets/openshift/images.mk \
targets/openshift/bindata.mk \
targets/openshift/operator/profile-manifests.mk \
)
# 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,ocp-console-operator,$(IMAGE_REGISTRY)/ocp/4.5:console-operator,./Dockerfile.rhel7,.)
# This will include additional actions on the update and verify targets to ensure that profile patches are applied
# to manifest files
# $0 - macro name
# $1 - target name
# $2 - profile patches directory
# $3 - manifests directory
$(call add-profile-manifests,manifests,./profile-patches,./manifests)
GO_UNIT_TEST_PACKAGES :=./pkg/... ./cmd/...
# Run tests
test: test-unit test-e2e
test-unit: install-go-junit-report
./test-unit.sh PKG=$(GO_UNIT_TEST_PACKAGES)
.PHONY: test-unit
test-e2e: install-go-junit-report
./test-e2e.sh
.PHONY: test-e2e
build:
go build -ldflags "-X $GO_PACKAGE/pkg/version.versionFromGit=$(git describe --long --tags --abbrev=7 --match 'v[0-9]*')" -tags="ocp" -o console ./cmd/console
# Automatically install go-junit-report if not found
GO_JUNIT_REPORT := $(shell command -v go-junit-report 2> /dev/null)
install-go-junit-report:
ifndef GO_JUNIT_REPORT
@echo "Installing go-junit-report..."
go install -mod= github.com/jstemmer/go-junit-report@latest
else
@echo "go-junit-report already installed."
go-junit-report --version
endif
# Remove all build artifacts.
#
# Example:
# make clean
clean:
rm -rf $(OUT_DIR)
.PHONY: clean