blob: f2c999860bd319992629cbab2bb71fdae48d80ad [file] [log] [blame]
Joey Armstrongf128de82023-09-08 17:05:18 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrongdc04c932024-04-01 12:14:21 -04003# Copyright 2022-2024 Open Networking Foundation Contributors
Joey Armstrongf128de82023-09-08 17:05:18 -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#
Joey Armstrongdc04c932024-04-01 12:14:21 -04009# http:#www.apache.org/licenses/LICENSE-2.0
Joey Armstrongf128de82023-09-08 17:05:18 -040010#
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 Armstrongdc04c932024-04-01 12:14:21 -040017# SPDX-FileCopyrightText: 2022-2024 Open Networking Foundation Contributors
18# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
Joey Armstrongf128de82023-09-08 17:05:18 -040020# Intent: Helper makefile target used to setup for a release
21# -----------------------------------------------------------------------
22
23$(if $(DEBUG),$(warning ENTER))
24
25## ---------------------------------------------------------------------------
26## Intent: Create branch driven nightly test jobs.
27## o Clone config for the last nightly release
28## o In-place edit to the latest version.
29## ---------------------------------------------------------------------------
30## NOTE: WIP - nightly jobs have not yet migrated from the mega job config file
31## ---------------------------------------------------------------------------
32certification-dir := $(release-mk-top)/jjb/voltha-test/voltha-certification
33certification-yaml := $(certification-dir)/$(voltha-version).yaml
34certification-tmpl := $(certification-dir)/$(voltha-release-last).yaml
35
36create-jobs-release-certification : $(certification-yaml)
37$(certification-yaml) : $(certification-tmpl)
38
39 @echo
40 @echo "** Create branch driven pipeline: nightly tests"
41 sed -e 's/$(last-release)/$(voltha-version)/g' $< > $@
42 $(HIDE)/bin/ls -l $(dir $@)
43
44## ---------------------------------------------------------------------------
45## Intent: Create branch driven nightly test jobs.
46## ---------------------------------------------------------------------------
47$(certification-tmpl):
48 @echo "ERROR: Yaml template branch does not exist: $@"
49 @echo 1
50
51## ---------------------------------------------------------------------------
52## Intent: Create branch driven nightly test jobs.
53## ---------------------------------------------------------------------------
54sterile-create-jobs-release-certification :
55 $(RM) $(certification-yaml)
56
57$(if $(DEBUG),$(warning LEAVE))
58
59# [EOF]