-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (29 loc) · 813 Bytes
/
Makefile
File metadata and controls
35 lines (29 loc) · 813 Bytes
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
VERSION ?= 0.0.1
OPERATOR_NAME ?= expiring-secret-operator
#OPERATOR_NAME ?= expiring-secrets
PROJECT_NAME ?= expiring-secrets.stakater.com
#vimTEST_CLUSTER_NAME ?= kind
#DOCKER_REPO_NAME ?= expiring-secret-operator
#SUPPRESS_OUTPUT ?= false
TEST_ARGS ?= -v -test.v -ginkgo.v
#.PHONY: all
#all: precheck style check_license lint build coverage
.PHONY: pre-commit
pre-commit: precheck check_license fmt vet lint
.PHONY: e2e
e2e: undeploy gh-action test-e2e
.PHONY: gh-action
gh-action:
# @{ \
# $(MAKE) manifests build docker-build; \
# $(MAKE) bundle bundle-build; \
# $(MAKE) docker-build bundle-build ; \
# $(MAKE) catalog-render catalog-build; \
# $(MAKE) deploy; \
# };
@{ \
$(MAKE) manifests build docker-build; \
$(MAKE) bundle bundle-build; \
$(MAKE) deploy; \
}
include Makefile.common