Joey Armstrong | c02931b | 2022-11-17 16:13:20 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
Joey Armstrong | ebc25f8 | 2022-11-04 15:10:51 -0400 | [diff] [blame] | 3 | # Copyright 2021-2022 Open Networking Foundation (ONF) and the ONF Contributors |
Matteo Scandolo | 7414cff | 2021-07-23 08:48:54 -0700 | [diff] [blame] | 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. |
Joey Armstrong | c02931b | 2022-11-17 16:13:20 -0500 | [diff] [blame] | 16 | # ----------------------------------------------------------------------- |
Matteo Scandolo | 7414cff | 2021-07-23 08:48:54 -0700 | [diff] [blame] | 17 | |
Joey Armstrong | c02931b | 2022-11-17 16:13:20 -0500 | [diff] [blame] | 18 | .DEFAULT_GOAL := help |
Matteo Scandolo | 7414cff | 2021-07-23 08:48:54 -0700 | [diff] [blame] | 19 | |
Joey Armstrong | c02931b | 2022-11-17 16:13:20 -0500 | [diff] [blame] | 20 | ##-------------------## |
| 21 | ##---] GLOBALS [---## |
| 22 | ##-------------------## |
| 23 | dot ?= . |
| 24 | TOP ?= $(dot) |
| 25 | MAKEDIR ?= $(TOP)/makefiles |
| 26 | |
| 27 | ##--------------------## |
| 28 | ##---] INCLUDES [---## |
| 29 | ##--------------------## |
| 30 | include $(MAKEDIR)/include.mk |
| 31 | |
| 32 | branch=`cat .gitreview | grep branch | cut -d '=' -f2` |
| 33 | |
Joey Armstrong | 0358897 | 2022-12-07 17:30:09 -0500 | [diff] [blame^] | 34 | ## ----------------------------------------------------------------------- |
| 35 | ## ----------------------------------------------------------------------- |
Joey Armstrong | c02931b | 2022-11-17 16:13:20 -0500 | [diff] [blame] | 36 | help:: # @HELP Print the command options |
| 37 | @echo " test Sanity check chart versions" |
| 38 | @echo |
| 39 | @echo "[CHECK: release]" |
Joey Armstrong | 0358897 | 2022-12-07 17:30:09 -0500 | [diff] [blame^] | 40 | @echo " helm-repo-tools Helper tools" |
Joey Armstrong | c02931b | 2022-11-17 16:13:20 -0500 | [diff] [blame] | 41 | @echo " tagcollisionreject.sh 404 - raw.github source MIA" |
Matteo Scandolo | 7414cff | 2021-07-23 08:48:54 -0700 | [diff] [blame] | 42 | @echo |
| 43 | @echo "\033[0;31m VOLTHA HELM CHARTS \033[0m" |
| 44 | @echo |
| 45 | @grep -E '^.*: .* *# *@HELP' $(MAKEFILE_LIST) \ |
| 46 | | sort \ |
| 47 | | awk ' \ |
| 48 | BEGIN {FS = ": .* *# *@HELP"}; \ |
| 49 | {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}; \ |
| 50 | ' |
| 51 | |
Joey Armstrong | c02931b | 2022-11-17 16:13:20 -0500 | [diff] [blame] | 52 | # ----------------------------------------------------------------------- |
| 53 | # curl: 404: Not Found |
| 54 | # https://raw.githubusercontent.com |
| 55 | # ----------------------------------------------------------------------- |
| 56 | # github no longer supports usercontent retrieval, svc was used as a CDN. |
| 57 | # 3 distinct versions of tcr.sh are used by jenkins jobs. |
| 58 | # ----------------------------------------------------------------------- |
| 59 | # Short term answer: |
| 60 | # o Find something usable for interactive use. |
| 61 | # Long term answer: |
| 62 | # o Refactor tcr.sh x [n] and support consistent functionality with a single script. |
| 63 | # ----------------------------------------------------------------------- |
Matteo Scandolo | 7414cff | 2021-07-23 08:48:54 -0700 | [diff] [blame] | 64 | tagcollisionreject.sh: |
| 65 | @curl -o tagcollisionreject.tmp.sh https://raw.githubusercontent.com/opencord/ci-management/master/jjb/shell/tagcollisionreject.sh |
| 66 | @echo 6dc8352d47f415e003dbddc30ede194ca304907d25f1c2a384f928083194860f tagcollisionreject.tmp.sh | sha256sum --check |
| 67 | @mv tagcollisionreject.tmp.sh tagcollisionreject.sh |
| 68 | |
| 69 | test-tags: tagcollisionreject.sh |
| 70 | @bash ./tagcollisionreject.sh |
| 71 | |
Joey Armstrong | 0358897 | 2022-12-07 17:30:09 -0500 | [diff] [blame^] | 72 | ## ----------------------------------------------------------------------- |
| 73 | ## [NOTE] moving to makefiles/lint/helm/include.mk |
| 74 | ## ----------------------------------------------------------------------- |
Matteo Scandolo | 7414cff | 2021-07-23 08:48:54 -0700 | [diff] [blame] | 75 | helm-repo-tools: |
| 76 | git clone "https://gerrit.opencord.org/helm-repo-tools" |
| 77 | |
Joey Armstrong | 0358897 | 2022-12-07 17:30:09 -0500 | [diff] [blame^] | 78 | ## ----------------------------------------------------------------------- |
| 79 | ## ----------------------------------------------------------------------- |
| 80 | # test-all += test-tags # tagcollisionreject + curl is broken |
| 81 | test-all += helm-repo-tools |
| 82 | test: $(test-all) # @HELP Makes sure the versions used in the charts are valid |
Matteo Scandolo | 7414cff | 2021-07-23 08:48:54 -0700 | [diff] [blame] | 83 | @COMPARISON_BRANCH=origin/$(branch) ./helm-repo-tools/chart_version_check.sh |
| 84 | |
Joey Armstrong | 0358897 | 2022-12-07 17:30:09 -0500 | [diff] [blame^] | 85 | ## ----------------------------------------------------------------------- |
| 86 | ## ----------------------------------------------------------------------- |
Joey Armstrong | ae55f95 | 2022-11-29 16:20:27 -0500 | [diff] [blame] | 87 | clean :: # @HELP Removes all files downloaded to run the tests |
Joey Armstrong | ebc25f8 | 2022-11-04 15:10:51 -0400 | [diff] [blame] | 88 | $(RM) -r helm-repo-tools |
| 89 | $(RM) tagcollisionreject.* |
Joey Armstrong | c02931b | 2022-11-17 16:13:20 -0500 | [diff] [blame] | 90 | |
| 91 | # [EOF] |