Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # -----------------------------------------------------------------------# |
| 3 | # Copyright 2016-2023 Open Networking Foundation (ONF) and the ONF Contributors |
| 4 | |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 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 | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 16 | # ----------------------------------------------------------------------- |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 17 | |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 18 | .DEFAULT_GOAL := help |
| 19 | |
| 20 | TOP ?= . |
| 21 | MAKEDIR ?= $(TOP)/makefiles |
| 22 | |
| 23 | $(if $(VERBOSE),$(eval export VERBOSE=$(VERBOSE))) # visible to include(s) |
| 24 | |
| 25 | ##--------------------## |
| 26 | ##---] INCLUDES [---## |
| 27 | ##--------------------## |
| 28 | include $(MAKEDIR)/include.mk |
Kent Hagerman | 074d0e0 | 2019-04-24 17:58:16 -0400 | [diff] [blame] | 29 | |
Zack Williams | 27f59a4 | 2019-05-10 09:12:07 -0700 | [diff] [blame] | 30 | # Variables |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 31 | VERSION ?= $(shell cat ./VERSION) |
Zack Williams | 27f59a4 | 2019-05-10 09:12:07 -0700 | [diff] [blame] | 32 | |
Maninder | 9a1bc0d | 2020-10-26 11:34:02 +0530 | [diff] [blame] | 33 | # Packages |
| 34 | PACKAGES = $(shell go list ./...) |
| 35 | |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 36 | DOCKER_LABEL_VCS_DIRTY = false |
| 37 | ifneq ($(shell git ls-files --others --modified --exclude-standard 2>/dev/null | wc -l | sed -e 's/ //g'),0) |
| 38 | DOCKER_LABEL_VCS_DIRTY = true |
| 39 | endif |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 40 | |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 41 | ## Docker related |
David K. Bainbridge | e14914d | 2019-05-24 13:43:05 -0700 | [diff] [blame] | 42 | DOCKER_EXTRA_ARGS ?= |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 43 | DOCKER_REGISTRY ?= |
| 44 | DOCKER_REPOSITORY ?= |
| 45 | DOCKER_TAG ?= ${VERSION}$(shell [[ ${DOCKER_LABEL_VCS_DIRTY} == "true" ]] && echo "-dirty" || true) |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 46 | DOCKER_TARGET ?= prod |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 47 | RWCORE_IMAGENAME := ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-rw-core |
Andrea Campanella | 7a6cce2 | 2019-12-17 14:10:27 -0800 | [diff] [blame] | 48 | TYPE ?= minimal |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 49 | |
| 50 | ## Docker labels. Only set ref and commit date if committed |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 51 | DOCKER_LABEL_VCS_URL ?= $(shell git remote get-url $(shell git remote)) |
| 52 | DOCKER_LABEL_VCS_REF = $(shell git rev-parse HEAD) |
| 53 | DOCKER_LABEL_BUILD_DATE ?= $(shell date -u "+%Y-%m-%dT%H:%M:%SZ") |
| 54 | DOCKER_LABEL_COMMIT_DATE = $(shell git show -s --format=%cd --date=iso-strict HEAD) |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 55 | |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 56 | DOCKER_BUILD_ARGS ?= \ |
David K. Bainbridge | e14914d | 2019-05-24 13:43:05 -0700 | [diff] [blame] | 57 | ${DOCKER_EXTRA_ARGS} \ |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 58 | --build-arg org_label_schema_version="${VERSION}" \ |
| 59 | --build-arg org_label_schema_vcs_url="${DOCKER_LABEL_VCS_URL}" \ |
| 60 | --build-arg org_label_schema_vcs_ref="${DOCKER_LABEL_VCS_REF}" \ |
| 61 | --build-arg org_label_schema_build_date="${DOCKER_LABEL_BUILD_DATE}" \ |
| 62 | --build-arg org_opencord_vcs_commit_date="${DOCKER_LABEL_COMMIT_DATE}" \ |
| 63 | --build-arg org_opencord_vcs_dirty="${DOCKER_LABEL_VCS_DIRTY}" |
| 64 | |
| 65 | DOCKER_BUILD_ARGS_LOCAL ?= ${DOCKER_BUILD_ARGS} \ |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 66 | --build-arg LOCAL_PROTOS=${LOCAL_PROTOS} |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 67 | |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 68 | # tool containers |
David K. Bainbridge | fc8e181 | 2021-04-09 16:09:49 +0000 | [diff] [blame] | 69 | VOLTHA_TOOLS_VERSION ?= 2.4.0 |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 70 | |
Kent Hagerman | 1b82075 | 2020-02-14 14:45:51 -0500 | [diff] [blame] | 71 | GO = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app $(shell test -t 0 && echo "-it") -v gocache:/.cache -v gocache-${VOLTHA_TOOLS_VERSION}:/go/pkg voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-golang go |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 72 | GO_JUNIT_REPORT = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app -i voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-go-junit-report go-junit-report |
Matteo Scandolo | a4c8145 | 2020-11-23 14:37:11 -0800 | [diff] [blame] | 73 | GOCOVER_COBERTURA = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app/src/github.com/opencord/voltha-go -i voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-gocover-cobertura gocover-cobertura |
Kent Hagerman | 1b82075 | 2020-02-14 14:45:51 -0500 | [diff] [blame] | 74 | GOLANGCI_LINT = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app $(shell test -t 0 && echo "-it") -v gocache:/.cache -v gocache-${VOLTHA_TOOLS_VERSION}:/go/pkg voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-golangci-lint golangci-lint |
| 75 | HADOLINT = docker run --rm --user $$(id -u):$$(id -g) -v ${CURDIR}:/app $(shell test -t 0 && echo "-it") voltha/voltha-ci-tools:${VOLTHA_TOOLS_VERSION}-hadolint hadolint |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 76 | |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 77 | .PHONY: docker-build local-protos local-lib-go help |
| 78 | .DEFAULT_GOAL := help |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 79 | |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 80 | |
David K. Bainbridge | 1678e19 | 2019-05-17 11:48:29 -0700 | [diff] [blame] | 81 | ## Local Development Helpers |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 82 | local-protos: ## Copies a local version of the voltha-protos dependency into the vendor directory |
David K. Bainbridge | 1678e19 | 2019-05-17 11:48:29 -0700 | [diff] [blame] | 83 | ifdef LOCAL_PROTOS |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 84 | rm -rf vendor/github.com/opencord/voltha-protos/v5/go |
| 85 | mkdir -p vendor/github.com/opencord/voltha-protos/v5/go |
| 86 | cp -r ${LOCAL_PROTOS}/go/* vendor/github.com/opencord/voltha-protos/v5/go |
David K. Bainbridge | 1678e19 | 2019-05-17 11:48:29 -0700 | [diff] [blame] | 87 | endif |
| 88 | |
Scott Baker | cb7c88a | 2019-10-16 18:32:48 -0700 | [diff] [blame] | 89 | ## Local Development Helpers |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 90 | local-lib-go: ## Copies a local version of the voltha-lib-go dependency into the vendor directory |
Scott Baker | cb7c88a | 2019-10-16 18:32:48 -0700 | [diff] [blame] | 91 | ifdef LOCAL_LIB_GO |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 92 | rm -rf vendor/github.com/opencord/voltha-lib-go/v7/pkg |
| 93 | mkdir -p vendor/github.com/opencord/voltha-lib-go/v7/pkg |
| 94 | cp -r ${LOCAL_LIB_GO}/pkg/* vendor/github.com/opencord/voltha-lib-go/v7/pkg/ |
Scott Baker | cb7c88a | 2019-10-16 18:32:48 -0700 | [diff] [blame] | 95 | endif |
| 96 | |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 97 | ## ----------------------------------------------------------------------- |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 98 | ## Docker targets |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 99 | ## ----------------------------------------------------------------------- |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 100 | build: docker-build ## Alias for 'docker-build' |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 101 | |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 102 | docker-build-args += --debug |
| 103 | docker-build-args += --log-level 'debug' |
| 104 | docker-build-args := $(null)# comment line for debug mode |
| 105 | |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 106 | docker-build: local-protos local-lib-go ## Build core docker image (set BUILD_PROFILED=true to also build the profiled image) |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 107 | @echo "=======================================================================" |
| 108 | @echo " ** TARGET: $@" |
| 109 | @echo "=======================================================================" |
| 110 | $(MAKE) --no-print-directory init-test-results |
| 111 | |
| 112 | docker $(docker-build-args) build $(DOCKER_BUILD_ARGS) -t ${RWCORE_IMAGENAME}:${DOCKER_TAG} --target ${DOCKER_TARGET} -f docker/Dockerfile.rw_core . |
Matteo Scandolo | 450933a | 2020-04-30 07:47:08 -0700 | [diff] [blame] | 113 | ifdef BUILD_PROFILED |
Andrea Campanella | 8d4f3e3 | 2021-04-13 10:02:03 +0200 | [diff] [blame] | 114 | # Force target to dev as profile build must be built with dynamic linking |
| 115 | docker build $(DOCKER_BUILD_ARGS) --target dev --build-arg EXTRA_GO_BUILD_TAGS="-tags profile" --build-arg CGO_PARAMETER="CGO_ENABLED=1" -t ${RWCORE_IMAGENAME}:${DOCKER_TAG}-profile -f docker/Dockerfile.rw_core . |
Matteo Scandolo | 450933a | 2020-04-30 07:47:08 -0700 | [diff] [blame] | 116 | endif |
David K. Bainbridge | 3768fde | 2020-07-29 21:15:35 -0700 | [diff] [blame] | 117 | ifdef BUILD_RACE |
Andrea Campanella | 8d4f3e3 | 2021-04-13 10:02:03 +0200 | [diff] [blame] | 118 | # Force target to dev as race detection build must be built with dynamic linking |
| 119 | docker build $(DOCKER_BUILD_ARGS) --target dev --build-arg GOLANG_IMAGE=golang:1.13.8-buster --build-arg CGO_PARAMETER="CGO_ENABLED=1" --build-arg DEPLOY_IMAGE=debian:buster-slim --build-arg EXTRA_GO_BUILD_TAGS="--race" -t ${RWCORE_IMAGENAME}:${DOCKER_TAG}-rd -f docker/Dockerfile.rw_core . |
David K. Bainbridge | 3768fde | 2020-07-29 21:15:35 -0700 | [diff] [blame] | 120 | endif |
Don Newton | 8eca462 | 2020-02-10 16:44:48 -0500 | [diff] [blame] | 121 | |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 122 | ## ----------------------------------------------------------------------- |
Joey Armstrong | 5f51f2e | 2023-01-17 17:06:26 -0500 | [diff] [blame] | 123 | ## Intent: |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 124 | ## ----------------------------------------------------------------------- |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 125 | docker-push: ## Push the docker images to an external repository |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 126 | docker push ${RWCORE_IMAGENAME}:${DOCKER_TAG} |
Matteo Scandolo | 8ed186a | 2020-05-04 10:52:42 -0700 | [diff] [blame] | 127 | ifdef BUILD_PROFILED |
| 128 | docker push ${RWCORE_IMAGENAME}:${DOCKER_TAG}-profile |
| 129 | endif |
David K. Bainbridge | 3768fde | 2020-07-29 21:15:35 -0700 | [diff] [blame] | 130 | ifdef BUILD_RACE |
| 131 | docker push ${RWCORE_IMAGENAME}:${DOCKER_TAG}-rd |
| 132 | endif |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 133 | docker-kind-load: ## Load docker images into a KinD cluster |
Andrea Campanella | 7a6cce2 | 2019-12-17 14:10:27 -0800 | [diff] [blame] | 134 | @if [ "`kind get clusters | grep voltha-$(TYPE)`" = '' ]; then echo "no voltha-$(TYPE) cluster found" && exit 1; fi |
| 135 | kind load docker-image ${RWCORE_IMAGENAME}:${DOCKER_TAG} --name=voltha-$(TYPE) --nodes $(shell kubectl get nodes --template='{{range .items}}{{.metadata.name}},{{end}}' | rev | cut -c 2- | rev) |
Andrea Campanella | 7a6cce2 | 2019-12-17 14:10:27 -0800 | [diff] [blame] | 136 | |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 137 | ## lint and unit tests |
khenaidoo | d2b6df9 | 2018-12-13 16:37:20 -0500 | [diff] [blame] | 138 | |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 139 | lint-dockerfile: ## Perform static analysis on Dockerfile |
Kent Hagerman | dcd4dcc | 2020-02-25 17:56:17 -0500 | [diff] [blame] | 140 | @echo "Running Dockerfile lint check..." |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 141 | @${HADOLINT} $$(find . -name "Dockerfile.*") |
David Bainbridge | 5f3619c | 2019-07-10 22:51:09 +0000 | [diff] [blame] | 142 | @echo "Dockerfile lint check OK" |
| 143 | |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 144 | lint-mod: ## Verify the Go dependencies |
Kent Hagerman | ca4c51e | 2019-05-02 12:28:55 -0400 | [diff] [blame] | 145 | @echo "Running dependency check..." |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 146 | @${GO} mod verify |
Scott Baker | e4c2a98 | 2019-11-21 16:32:03 -0800 | [diff] [blame] | 147 | @echo "Dependency check OK. Running vendor check..." |
| 148 | @git status > /dev/null |
Kent Hagerman | dcd4dcc | 2020-02-25 17:56:17 -0500 | [diff] [blame] | 149 | @git diff-index --quiet HEAD -- go.mod go.sum vendor || (echo "ERROR: Staged or modified files must be committed before running this test" && git status -- go.mod go.sum vendor && exit 1) |
| 150 | @[[ `git ls-files --exclude-standard --others go.mod go.sum vendor` == "" ]] || (echo "ERROR: Untracked files must be cleaned up before running this test" && git status -- go.mod go.sum vendor && exit 1) |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 151 | ${GO} mod tidy |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 152 | |
| 153 | # This command is destructive, vendor/ removed |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 154 | ${GO} mod vendor |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 155 | |
Scott Baker | e4c2a98 | 2019-11-21 16:32:03 -0800 | [diff] [blame] | 156 | @git status > /dev/null |
Kent Hagerman | dcd4dcc | 2020-02-25 17:56:17 -0500 | [diff] [blame] | 157 | @git diff-index --quiet HEAD -- go.mod go.sum vendor || (echo "ERROR: Modified files detected after running go mod tidy / go mod vendor" && git status -- go.mod go.sum vendor && git checkout -- go.mod go.sum vendor && exit 1) |
| 158 | @[[ `git ls-files --exclude-standard --others go.mod go.sum vendor` == "" ]] || (echo "ERROR: Untracked files detected after running go mod tidy / go mod vendor" && git status -- go.mod go.sum vendor && git checkout -- go.mod go.sum vendor && exit 1) |
Scott Baker | e4c2a98 | 2019-11-21 16:32:03 -0800 | [diff] [blame] | 159 | @echo "Vendor check OK." |
| 160 | |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 161 | ## ----------------------------------------------------------------------- |
| 162 | ## ----------------------------------------------------------------------- |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 163 | lint: lint-mod lint-dockerfile ## Run all lint targets |
Kent Hagerman | 074d0e0 | 2019-04-24 17:58:16 -0400 | [diff] [blame] | 164 | |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 165 | sca: ## Runs static code analysis with the golangci-lint tool |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 166 | @$(RM) -r ./sca-report |
Scott Baker | 18ea5a4 | 2019-10-15 16:08:42 -0700 | [diff] [blame] | 167 | @mkdir -p ./sca-report |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 168 | @echo "Running static code analysis..." |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 169 | @${GOLANGCI_LINT} run --deadline=6m --out-format junit-xml ./... \ |
| 170 | | tee ./sca-report/sca-report.xml |
Kent Hagerman | 1b82075 | 2020-02-14 14:45:51 -0500 | [diff] [blame] | 171 | @echo "" |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 172 | @echo "Static code analysis OK" |
Scott Baker | 18ea5a4 | 2019-10-15 16:08:42 -0700 | [diff] [blame] | 173 | |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 174 | ## ----------------------------------------------------------------------- |
| 175 | ## ----------------------------------------------------------------------- |
| 176 | tests-dir := ./tests/results |
| 177 | tests-coverage := $(tests-dir)/go-test-coverage |
| 178 | tests-results := $(tests-dir)/go-test-results |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 179 | test: local-lib-go ## Run unit tests |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 180 | $(MAKE) --no-print-directory init-test-results |
| 181 | $(HIDE)${GO} test -mod=vendor -v -coverprofile $(tests-coverage).out -covermode count ./... 2>&1 | tee $(tests-results).out ;\ |
Zack Williams | 7cf7800 | 2019-04-30 21:45:35 -0700 | [diff] [blame] | 182 | RETURN=$$? ;\ |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 183 | ${GO_JUNIT_REPORT} < $(tests-results).out > $(tests-results).xml ;\ |
| 184 | ${GOCOVER_COBERTURA} < $(tests-coverage).out > $(tests-coverage).xml ;\ |
Zack Williams | 7cf7800 | 2019-04-30 21:45:35 -0700 | [diff] [blame] | 185 | exit $$RETURN |
Kent Hagerman | 074d0e0 | 2019-04-24 17:58:16 -0400 | [diff] [blame] | 186 | |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 187 | clean: distclean ## Removes any local filesystem artifacts generated by a build |
David K. Bainbridge | 1678e19 | 2019-05-17 11:48:29 -0700 | [diff] [blame] | 188 | |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 189 | distclean sterile: ## Removes any local filesystem artifacts generated by a build or test run |
| 190 | $(RM) -r ./sca-report |
David K. Bainbridge | 1678e19 | 2019-05-17 11:48:29 -0700 | [diff] [blame] | 191 | |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 192 | mod-update: ## Update go mod files |
Kent Hagerman | 812b257 | 2020-01-28 11:57:51 -0500 | [diff] [blame] | 193 | ${GO} mod tidy |
| 194 | ${GO} mod vendor |
Maninder | 9a1bc0d | 2020-10-26 11:34:02 +0530 | [diff] [blame] | 195 | |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 196 | fmt: ## Formats the soure code to go best practice style |
Maninder | 9a1bc0d | 2020-10-26 11:34:02 +0530 | [diff] [blame] | 197 | @go fmt ${PACKAGES} |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 198 | |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 199 | ## --------------------------------------------------------------------------- |
| 200 | ## Intent: Prep work, test -coverprofile fails w/o a file on disk ?!? |
| 201 | ## --------------------------------------------------------------------------- |
| 202 | init-test-results: |
| 203 | @$(RM) -r tests/results |
| 204 | @mkdir -p tests/results |
| 205 | @touch $(tests-coverage).out |
| 206 | |
| 207 | ## --------------------------------------------------------------------------- |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 208 | # For each makefile target, add ## <description> on the target line and it will be listed by 'make help' |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 209 | ## --------------------------------------------------------------------------- |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 210 | help: ## Print help for each Makefile target |
| 211 | @echo "Usage: make [<target>]" |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 212 | @echo " help This message" |
| 213 | @echo " todo Future enhancements" |
| 214 | @echo " versions Display version-by-tool used while building" |
| 215 | ifdef VERBOSE |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 216 | @echo |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 217 | @echo " init-test-results Massage tests/results to fix coverage reporting" |
| 218 | endif |
| 219 | @echo |
| 220 | @grep --no-filename '^[[:alpha:]_-]*:.* ##' $(MAKEFILE_LIST) \ |
| 221 | | sort \ |
| 222 | | awk 'BEGIN {FS=":.* ## "}; {printf "%-25s : %s\n", $$1, $$2};' |
| 223 | |
| 224 | # [EOF] |