blob: 197fb70b29694af5a151a472001c411e7fb6b827 [file] [log] [blame]
Joey Armstrong7ee65262023-06-02 09:55:04 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong6a9013e2024-02-01 17:56:57 -05003# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong7ee65262023-06-02 09:55:04 -04004#
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# -----------------------------------------------------------------------
17# Intent: Helper makefile target used to setup for a release
18# -----------------------------------------------------------------------
19
20$(if $(DEBUG),$(warning ENTER))
21
22##-------------------##
23##---] GLOBALS [---##
24##-------------------##
25
26# TODO: Library function $(call mk-path,makefiles/release/targets.mk)
27release-mk-top := $(abspath $(lastword $(MAKEFILE_LIST)))
28release-mk-top := $(subst /makefiles/release/targets.mk,$(null),$(release-mk-top))
29
30GIT ?= /usr/bin/env git
31
Joey Armstrong7bcb5782023-06-07 12:25:57 -040032##--------------------##
33##---] INCLUDES [---##
34##--------------------##
Joey Armstrongdd334492023-07-09 17:59:02 -040035include $(ONF_MAKEDIR)/release/voltha-versions.mk
36include $(ONF_MAKEDIR)/release/targets/voltha-certification.mk
37include $(ONF_MAKEDIR)/release/targets/voltha-e2e.mk
38include $(ONF_MAKEDIR)/release/targets/voltha-nightly-jobs.mk
Joey Armstrong7ee65262023-06-02 09:55:04 -040039
Joey Armstrong7bcb5782023-06-07 12:25:57 -040040# last-release := voltha-2.11
41last-release := $(voltha-release-last)
Joey Armstrongf3208602023-06-03 15:12:23 -040042
Joey Armstrong7ee65262023-06-02 09:55:04 -040043
44##-------------------##
45##---] TARGETS [---##
46##-------------------##
47all: help
48
49## ---------------------------------------------------------------------------
Joey Armstrong7bcb5782023-06-07 12:25:57 -040050## Intent: Build these deps to create a new branch/release area
Joey Armstrong7ee65262023-06-02 09:55:04 -040051## ---------------------------------------------------------------------------
Joey Armstrong7b1c9f22023-06-12 12:39:40 -040052create-jobs-release += create-jobs-release-bat
Joey Armstrongf3208602023-06-03 15:12:23 -040053create-jobs-release += create-jobs-release-certification
Joey Armstrong7ee65262023-06-02 09:55:04 -040054create-jobs-release += create-jobs-release-nightly
55create-jobs-release += create-jobs-release-units
Joey Armstrong7bcb5782023-06-07 12:25:57 -040056create-jobs-release += create-jobs-release-e2e
Joey Armstrong7ee65262023-06-02 09:55:04 -040057
58create-jobs-release : $(create-jobs-release)
59
60 @echo
61 $(GIT) status
62
63## ---------------------------------------------------------------------------
64## Intent: Create branch driven pipeline test jobs.
65## ---------------------------------------------------------------------------
66units-yaml := $(release-mk-top)/jjb/pipeline/voltha/$(voltha-version)
67units-root := $(subst /$(voltha-version),$(null),$(units-yaml))
68create-jobs-release-units : $(units-yaml)
69$(units-yaml):
70
71 @echo
72 @echo "** Create branch driven pipeline: unit tests"
73 $(HIDE)mkdir -vp $@
74 rsync -r --checksum $(units-root)/master/. $@/.
75 $(HIDE)/bin/ls -l $(units-root)
76
77## ---------------------------------------------------------------------------
78## Intent: Create branch driven nightly test jobs.
Joey Armstrong7ee65262023-06-02 09:55:04 -040079## ---------------------------------------------------------------------------
Joey Armstrong7bcb5782023-06-07 12:25:57 -040080sterile-create-jobs-release := $(addprefix sterile-,$(create-jobs-release))
81sterile-create-jobs-release : $(sterile-create-jobs-release)
Joey Armstrong7ee65262023-06-02 09:55:04 -040082 $(RM) -r $(units-yaml)
83
84$(if $(DEBUG),$(warning LEAVE))
85
86# [EOF]