Joey Armstrong | 7bcb578 | 2023-06-07 12:25:57 -0400 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
| 3 | # Copyright 2022-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 | # ----------------------------------------------------------------------- |
| 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 | ## --------------------------------------------------------------------------- |
| 33 | voltha-nightly-dir := $(release-mk-top)/jjb/voltha-test/voltha-nightly-jobs |
| 34 | voltha-nightly-yaml := $(voltha-nightly-dir)/$(voltha-version).yaml |
| 35 | voltha-nightly-tmpl := $(voltha-nightly-dir)/$(voltha-release-last).yaml |
| 36 | |
| 37 | create-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] |