blob: bf6b5ac6d1951e133fe79e0abfbba29a7da44b4f [file] [log] [blame]
Joey Armstrong7bcb5782023-06-07 12:25:57 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong6a9013e2024-02-01 17:56:57 -05003# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong7bcb5782023-06-07 12:25:57 -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## ---------------------------------------------------------------------------
27## Intent: Create branch driven nightly test jobs.
28## o Clone config for the last nightly release
29## o In-place edit to the latest version.
30## ---------------------------------------------------------------------------
31## NOTE: WIP - nightly jobs have not yet migrated from the mega job config file
32## ---------------------------------------------------------------------------
33voltha-nightly-dir := $(release-mk-top)/jjb/voltha-test/voltha-nightly-jobs
34voltha-nightly-yaml := $(voltha-nightly-dir)/$(voltha-version).yaml
35voltha-nightly-tmpl := $(voltha-nightly-dir)/$(voltha-release-last).yaml
36
37create-jobs-release-nightly : $(voltha-nightly-yaml)
38$(voltha-nightly-yaml) : $(voltha-nightly-tmpl)
39
40 @echo
41 @echo "** Create branch driven pipeline: nightly tests"
42 sed -e 's/$(last-release)/$(voltha-version)/g' $< > $@
43 $(HIDE)/bin/ls -l $(dir $@)
44
45## ---------------------------------------------------------------------------
46## Intent: Create branch driven nightly test jobs.
47## ---------------------------------------------------------------------------
48$(voltha-nightly-tmpl):
49 @echo "ERROR: Yaml template branch does not exist: $@"
50 @echo 1
51
52$(if $(DEBUG),$(warning LEAVE))
53
54# [EOF]