blob: 285f5fd970d14773b50e7808330c1aa95eec1db5 [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## Intent: Create branch driven nightly test jobs.
24## o Clone config for the last nightly release
25## o In-place edit to the latest version.
26## ---------------------------------------------------------------------------
27## NOTE: WIP - nightly jobs have not yet migrated from the mega job config file
28## ---------------------------------------------------------------------------
29certification-dir := $(release-mk-top)/jjb/voltha-test/voltha-certification
30certification-yaml := $(certification-dir)/$(voltha-version).yaml
31certification-tmpl := $(certification-dir)/$(voltha-release-last).yaml
32
33create-jobs-release-certification : $(certification-yaml)
34$(certification-yaml) : $(certification-tmpl)
35
36 @echo
37 @echo "** Create branch driven pipeline: nightly tests"
38 sed -e 's/$(last-release)/$(voltha-version)/g' $< > $@
39 $(HIDE)/bin/ls -l $(dir $@)
40
41## ---------------------------------------------------------------------------
42## Intent: Create branch driven nightly test jobs.
43## ---------------------------------------------------------------------------
44$(certification-tmpl):
45 @echo "ERROR: Yaml template branch does not exist: $@"
46 @echo 1
47
48## ---------------------------------------------------------------------------
49## Intent: Create branch driven nightly test jobs.
50## ---------------------------------------------------------------------------
51sterile-create-jobs-release-certification :
52 $(RM) $(certification-yaml)
53
54$(if $(DEBUG),$(warning LEAVE))
55
56# [EOF]