-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
37 lines (26 loc) · 868 Bytes
/
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
# include core make support
include .make/base.mk
PYTHON_LINE_LENGTH = 99
OCI_BUILD_ADDITIONAL_ARGS=--build-arg OCI_IMAGE_VERSION=$(SKA_K8S_TOOLS_BUILD_DEPLOY)
PYTHON_RUNNER := poetry run
DOCS_SPHINXBUILD := poetry run python -m sphinx
ifneq ($(CI_JOB_ID),)
DEV_TAG := $(VERSION)-dev.c$(CI_COMMIT_SHORT_SHA)
OCI_BUILD_ADDITIONAL_TAGS += $(DEV_TAG)
endif
install-prepare-commit-msg-global:
scripts/git/install-prepare-commit-msg-global.sh
install-prepare-commit-msg-local:
scripts/git/install-prepare-commit-msg-local.sh
# include OCI Images support
include .make/oci.mk
# include k8s support
include .make/k8s.mk
# include Helm Chart support
include .make/helm.mk
# Include Python support
include .make/python.mk
# include raw support
include .make/raw.mk
# include your own private variables for custom deployment configuration
-include PrivateRules.mak