blob: cf07bc255f45609d9d14f8a59cbccd73a59c77ac [file] [log] [blame]
Joey Armstrong0205d332023-04-11 17:29:23 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 2023 Open Networking Foundation (ONF) and the ONF Contributors
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# -----------------------------------------------------------------------
Joey Armstrong7ad5c362023-07-09 19:10:16 -040017# https://gerrit.opencord.org/plugins/gitiles/onf-make
18# ONF.makefiles.include.version = 1.1
Joey Armstrongf128de82023-09-08 17:05:18 -040019# ONF.confg.mk = 1.5
Joey Armstrong7ad5c362023-07-09 19:10:16 -040020# -----------------------------------------------------------------------
21
Joey Armstronga8205c22023-10-18 13:35:16 -040022--repo-name-- := onf-make
Joey Armstrong7ad5c362023-07-09 19:10:16 -040023--repo-name-- ?= $(error --repo-name--= is required)
Joey Armstrong0205d332023-04-11 17:29:23 -040024
25##--------------------------------##
26##---] Disable lint targets [---##
27##--------------------------------##
Joey Armstrongf128de82023-09-08 17:05:18 -040028# NO-LINT-DOC8 := true
29# NO-LINT-GOLANG := true
Joey Armstrong7ad5c362023-07-09 19:10:16 -040030# NO-LINT-GROOVY := true# # Note[1]
31# NO-LINT-JJB := true# # Note[2]
32# NO-LINT-JSON := true# # Note[1]
33# NO-LINT-MAKEFILE := true# # Note[1]
34# NO-LINT-REUSE := true # License check
Joey Armstrongf128de82023-09-08 17:05:18 -040035# NO-LINT-ROBOT := true
Joey Armstrong7ad5c362023-07-09 19:10:16 -040036# NO-LINT-SHELL := true# # Note[1]
37# NO-LINT-YAML := true# # Note[1]
Joey Armstrong0205d332023-04-11 17:29:23 -040038
Joey Armstrongf128de82023-09-08 17:05:18 -040039# NO-LINT-FLAKE8 := true# # Note[1]
Joey Armstrong7ad5c362023-07-09 19:10:16 -040040# NO-LINT-PYTHON := true# # Note[1]
41# NO-LINT-PYLINT := true# # Note[1]
Joey Armstrong7ad5c362023-07-09 19:10:16 -040042
43# Note[1] - A boatload of source to cleanup prior to enable.
44# Note[2] - No sources available
45
46##---------------------------------##
47##---] Conditional make logic [---##
48##---------------------------------##
49# USE-ONF-DOCKER-MK := true
50# USE-ONF-GERRIT-MK := true
51# USE-ONF-GIT-MK := true
52# USE-ONF-JJB-MK := true
53# USE-VOLTHA-RELEASE-MK := true
54
55##----------------------##
56##---] Debug Mode [---##
57##----------------------##
58# export DEBUG := 1 # makefile debug
59# export DISTUTILS_DEBUG := 1 # verbose: pip
60# export DOCKER_DEBUG := 1 # verbose: docker
61# export VERBOSE := 1 # makefile debug
62
63##-----------------------------------##
64##---] JJB/Jenkins Job Builder [---##
65##-----------------------------------##
66JJB_VERSION ?= 2.8.0
67JOBCONFIG_DIR ?= job-configs
68
69##---------------------------------##
70##---] Filesystem exclusions [---##
71##---------------------------------##
72onf-excl-dirs := $(null) # make clean: dirs=
73onf-excl-dirs += .venv# # $(venv-name)
74onf-excl-dirs += vendor# # golang / voltha*-go
75onf-excl-dirs += patches# # voltha docs - python upgrade
76onf-excl-dirs += .tox # also a python dependency
77
Joey Armstrongf128de82023-09-08 17:05:18 -040078ifeq ($(--repo-name--),voltha-docs)
Joey Armstronga8205c22023-10-18 13:35:16 -040079 lint-doc8-excl += '_build' # TODO: deprecate
Joey Armstrongf128de82023-09-08 17:05:18 -040080endif
81
Joey Armstrong7ad5c362023-07-09 19:10:16 -040082onf-excl-dirs ?= $(error onf-excl-dirs= is required)
83
84##-----------------------------##
85##---] Feature Detection [---##
86##-----------------------------##
87# [TODO] include makefiles/features/include.mk
88# [TODO] All logic below can migrate there.
89
90$(if $(filter %ci-management,$(--repo-name--)),\
91 $(eval --REPO-IS-CI-MANAGEMENT-- := true)\
92)
Joey Armstronga8205c22023-10-18 13:35:16 -040093
Joey Armstrongf128de82023-09-08 17:05:18 -040094$(if $(filter %voltha-docs,$(--repo-name--)),\
95 $(eval --REPO-IS-VOLTHA-DOCS-- := true)\
96)
Joey Armstrong7ad5c362023-07-09 19:10:16 -040097
98# create makefiles/config/byrepo/{--repo-name--}.mk for one-off snowflakes ?
99# $(if $(wildcard docker),$(eval USE-ONF-DOCKER-MK := true))
100
101##-------------------------##
102##---] Derived Flags [---##
103##-------------------------##
104ifdef --REPO-IS-CI-MANAGEMENT--
105 USE-ONF-JJB := true
106
107 onf-excl-dirs += global-jjb
108 onf-excl-dirs += lf-ansible
109 onf-excl-dirs += packer
110endif
111
Joey Armstrongf128de82023-09-08 17:05:18 -0400112ifdef --REPO-IS-VOLTHA-DOCS--
113 onf-excl-dirs += _build
114 onf-excl-dirs += repos
115endif
116
Joey Armstrong7ad5c362023-07-09 19:10:16 -0400117ifdef NO-LINT-PYTHON
118 NO-LINT-FLAKE8 := true
119 NO-LINT-PYLINT := true
120endif
121
122ifndef USE-ONF-JJB
123 NO-LINT-JJB := true
124endif
125
126onf-excl-dirs := $(sort $(strip $(onf-excl-dirs)))
Joey Armstronga6890342023-06-01 17:07:51 -0400127
Joey Armstrongf128de82023-09-08 17:05:18 -0400128# --------------------------------------------------------------------
129# Repository specific values
130# --------------------------------------------------------------------
131# sterile-dirs += archives
Joey Armstrong7805bbd2023-07-07 08:37:04 -0400132
Joey Armstrong0205d332023-04-11 17:29:23 -0400133# [EOF]