Phaneendra Manda | 4c62c80 | 2019-03-06 21:37:49 +0530 | [diff] [blame] | 1 | # |
| 2 | # Copyright 2016 the original author or authors. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 17 | # set default shell |
| 18 | SHELL = bash -e -o pipefail |
| 19 | |
| 20 | # Variables |
| 21 | VERSION ?= $(shell cat ./VERSION) |
| 22 | |
Matt Jeanneret | f880eb6 | 2019-07-16 20:08:03 -0400 | [diff] [blame] | 23 | DOCKER_LABEL_VCS_DIRTY = false |
| 24 | ifneq ($(shell git ls-files --others --modified --exclude-standard 2>/dev/null | wc -l | sed -e 's/ //g'),0) |
| 25 | DOCKER_LABEL_VCS_DIRTY = true |
| 26 | endif |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 27 | ## Docker related |
Matt Jeanneret | f880eb6 | 2019-07-16 20:08:03 -0400 | [diff] [blame] | 28 | DOCKER_EXTRA_ARGS ?= |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 29 | DOCKER_REGISTRY ?= |
| 30 | DOCKER_REPOSITORY ?= |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 31 | DOCKER_TAG ?= ${VERSION} |
Matt Jeanneret | b5bf10e | 2019-05-18 15:02:51 -0400 | [diff] [blame] | 32 | ADAPTER_IMAGENAME := ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-openolt-adapter:${DOCKER_TAG} |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 33 | |
| 34 | ## Docker labels. Only set ref and commit date if committed |
Matt Jeanneret | f880eb6 | 2019-07-16 20:08:03 -0400 | [diff] [blame] | 35 | DOCKER_LABEL_VCS_URL ?= $(shell git remote get-url $(shell git remote)) |
| 36 | DOCKER_LABEL_VCS_REF = $(shell git rev-parse HEAD) |
| 37 | DOCKER_LABEL_BUILD_DATE ?= $(shell date -u "+%Y-%m-%dT%H:%M:%SZ") |
| 38 | DOCKER_LABEL_COMMIT_DATE = $(shell git show -s --format=%cd --date=iso-strict HEAD) |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 39 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 40 | # Default is GO111MODULE=auto, which will refuse to use go mod if running |
| 41 | # go less than 1.13.0 and this repository is checked out in GOPATH. For now, |
| 42 | # force module usage. This affects commands executed from this Makefile, but |
| 43 | # not the environment inside the Docker build (which does not build from |
| 44 | # inside a GOPATH). |
| 45 | export GO111MODULE=on |
| 46 | |
Matt Jeanneret | f880eb6 | 2019-07-16 20:08:03 -0400 | [diff] [blame] | 47 | DOCKER_BUILD_ARGS ?= \ |
| 48 | ${DOCKER_EXTRA_ARGS} \ |
| 49 | --build-arg org_label_schema_version="${VERSION}" \ |
| 50 | --build-arg org_label_schema_vcs_url="${DOCKER_LABEL_VCS_URL}" \ |
| 51 | --build-arg org_label_schema_vcs_ref="${DOCKER_LABEL_VCS_REF}" \ |
| 52 | --build-arg org_label_schema_build_date="${DOCKER_LABEL_BUILD_DATE}" \ |
| 53 | --build-arg org_opencord_vcs_commit_date="${DOCKER_LABEL_COMMIT_DATE}" \ |
| 54 | --build-arg org_opencord_vcs_dirty="${DOCKER_LABEL_VCS_DIRTY}" |
| 55 | |
Scott Baker | 355d174 | 2019-10-24 10:57:52 -0700 | [diff] [blame] | 56 | .PHONY: docker-build local-protos local-lib-go |
Phaneendra Manda | 4c62c80 | 2019-03-06 21:37:49 +0530 | [diff] [blame] | 57 | |
| 58 | # This should to be the first and default target in this Makefile |
| 59 | help: |
| 60 | @echo "Usage: make [<target>]" |
| 61 | @echo "where available targets are:" |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 62 | @echo "" |
| 63 | @echo "clean : Removes any local filesystem artifacts generated by a build" |
| 64 | @echo "distclean : Removes any local filesystem artifacts generated by a build or test run" |
David Bainbridge | 63d5181 | 2019-10-22 15:55:29 +0000 | [diff] [blame] | 65 | @echo "build : Build all openolt adapter artifacts" |
Zack Williams | 95504be | 2019-09-03 14:17:24 -0700 | [diff] [blame] | 66 | @echo "docker-build : Build openolt adapter docker image" |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 67 | @echo "docker-push : Push the docker images to an external repository" |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 68 | @echo "help : Print this help" |
| 69 | @echo "lint : Run all lint targets" |
| 70 | @echo "lint-mod : Verify the Go dependencies" |
| 71 | @echo "lint-sanity : Run the Go language sanity tests (vet)" |
| 72 | @echo "lint-style : Verify the Go standard format of the source" |
| 73 | @echo "local-protos : Copies a local verison of the VOLTHA protos into the vendor directory" |
Scott Baker | 355d174 | 2019-10-24 10:57:52 -0700 | [diff] [blame] | 74 | @echo "local-lib-go : Copies a local version of the VOTLHA dependencies into the vendor directory" |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 75 | @echo "sca : Runs various SCA through golangci-lint tool" |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 76 | @echo "test : Run unit tests, if any" |
Phaneendra Manda | 4c62c80 | 2019-03-06 21:37:49 +0530 | [diff] [blame] | 77 | @echo |
| 78 | |
Matt Jeanneret | b5bf10e | 2019-05-18 15:02:51 -0400 | [diff] [blame] | 79 | ## Local Development Helpers |
Phaneendra Manda | 4c62c80 | 2019-03-06 21:37:49 +0530 | [diff] [blame] | 80 | |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 81 | local-protos: |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 82 | ifdef LOCAL_PROTOS |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 83 | rm -rf vendor/github.com/opencord/voltha-protos/go |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 84 | mkdir -p vendor/github.com/opencord/voltha-protos/go |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 85 | cp -r ${LOCAL_PROTOS}/go/* vendor/github.com/opencord/voltha-protos/go |
| 86 | rm -rf vendor/github.com/opencord/voltha-protos/go/vendor |
Matt Jeanneret | b5bf10e | 2019-05-18 15:02:51 -0400 | [diff] [blame] | 87 | endif |
| 88 | |
Scott Baker | 355d174 | 2019-10-24 10:57:52 -0700 | [diff] [blame] | 89 | ## Local Development Helpers |
| 90 | local-lib-go: |
| 91 | ifdef LOCAL_LIB_GO |
| 92 | mkdir -p vendor/github.com/opencord/voltha-lib-go/pkg |
| 93 | cp -r ${LOCAL_LIB_GO}/pkg/* vendor/github.com/opencord/voltha-lib-go/pkg/ |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 94 | endif |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 95 | |
Matt Jeanneret | b5bf10e | 2019-05-18 15:02:51 -0400 | [diff] [blame] | 96 | ## Docker targets |
| 97 | |
David Bainbridge | 63d5181 | 2019-10-22 15:55:29 +0000 | [diff] [blame] | 98 | build: docker-build |
| 99 | |
Scott Baker | 355d174 | 2019-10-24 10:57:52 -0700 | [diff] [blame] | 100 | docker-build: local-protos local-lib-go |
David K. Bainbridge | 8eb6cd6 | 2019-08-22 13:17:29 -0700 | [diff] [blame] | 101 | docker build $(DOCKER_BUILD_ARGS) -t ${ADAPTER_IMAGENAME} -f docker/Dockerfile.openolt . |
Matt Jeanneret | b5bf10e | 2019-05-18 15:02:51 -0400 | [diff] [blame] | 102 | |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 103 | docker-push: |
| 104 | docker push ${ADAPTER_IMAGENAME} |
| 105 | |
Matt Jeanneret | 8b823f6 | 2019-05-11 11:01:28 -0400 | [diff] [blame] | 106 | ## lint and unit tests |
Phaneendra Manda | 4c62c80 | 2019-03-06 21:37:49 +0530 | [diff] [blame] | 107 | |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 108 | lint-style: |
| 109 | ifeq (,$(shell which gofmt)) |
| 110 | go get -u github.com/golang/go/src/cmd/gofmt |
| 111 | endif |
| 112 | @echo "Running style check..." |
| 113 | @gofmt_out="$$(gofmt -l $$(find . -name '*.go' -not -path './vendor/*'))" ;\ |
| 114 | if [ ! -z "$$gofmt_out" ]; then \ |
| 115 | echo "$$gofmt_out" ;\ |
| 116 | echo "Style check failed on one or more files ^, run 'go fmt' to fix." ;\ |
| 117 | exit 1 ;\ |
| 118 | fi |
| 119 | @echo "Style check OK" |
| 120 | |
| 121 | lint-sanity: |
| 122 | @echo "Running sanity check..." |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 123 | @go vet -mod=vendor ./... |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 124 | @echo "Sanity check OK" |
| 125 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 126 | lint-mod: |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 127 | @echo "Running dependency check..." |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 128 | @go mod verify |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 129 | @echo "Dependency check OK" |
| 130 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 131 | lint: lint-style lint-sanity lint-mod |
| 132 | |
| 133 | __GOPATH=$(shell go env GOPATH) |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 134 | |
Scott Baker | a4cd50d | 2019-10-15 16:53:38 -0700 | [diff] [blame] | 135 | # Rules to automatically install golangci-lint |
| 136 | GOLANGCI_LINT_TOOL?=$(shell which golangci-lint) |
| 137 | ifeq (,$(GOLANGCI_LINT_TOOL)) |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 138 | GOLANGCI_LINT_TOOL=$(__GOPATH)/bin/golangci-lint |
Scott Baker | a4cd50d | 2019-10-15 16:53:38 -0700 | [diff] [blame] | 139 | golangci_lint_tool_install: |
| 140 | # Same version as installed by Jenkins ci-management |
| 141 | # Note that install using `go get` is not recommended as per https://github.com/golangci/golangci-lint |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 142 | curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(__GOPATH)/bin v1.17.0 |
Scott Baker | a4cd50d | 2019-10-15 16:53:38 -0700 | [diff] [blame] | 143 | else |
| 144 | golangci_lint_tool_install: |
| 145 | endif |
| 146 | |
| 147 | # Rules to automatically install go-junit-report |
| 148 | GO_JUNIT_REPORT?=$(shell which go-junit-report) |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 149 | ifeq (,$(GO_JUNIT_REPORT)) |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 150 | GO_JUNIT_REPORT=$(__GOPATH)/bin/go-junit-report |
Scott Baker | a4cd50d | 2019-10-15 16:53:38 -0700 | [diff] [blame] | 151 | go_junit_install: |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 152 | go get -u github.com/jstemmer/go-junit-report |
Scott Baker | a4cd50d | 2019-10-15 16:53:38 -0700 | [diff] [blame] | 153 | else |
| 154 | go_junit_install: |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 155 | endif |
| 156 | |
Scott Baker | a4cd50d | 2019-10-15 16:53:38 -0700 | [diff] [blame] | 157 | # Rules to automatically install gocover-covertura |
| 158 | GOCOVER_COBERTURA?=$(shell which gocover-cobertura) |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 159 | ifeq (,$(GOCOVER_COBERTURA)) |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 160 | @GOCOVER_COBERTURA=$(__GOPATH)/bin/gocover-cobertura |
Scott Baker | a4cd50d | 2019-10-15 16:53:38 -0700 | [diff] [blame] | 161 | gocover_cobertura_install: |
| 162 | go get -u github.com/t-yuki/gocover-cobertura |
| 163 | else |
| 164 | gocover_cobertura_install: |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 165 | endif |
| 166 | |
Scott Baker | a4cd50d | 2019-10-15 16:53:38 -0700 | [diff] [blame] | 167 | test: go_junit_install gocover_cobertura_install |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 168 | @mkdir -p ./tests/results |
| 169 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 170 | @go test -mod=vendor -v -coverprofile ./tests/results/go-test-coverage.out -covermode count ./... 2>&1 | tee ./tests/results/go-test-results.out ;\ |
Matt Jeanneret | 384d8c9 | 2019-05-06 14:27:31 -0400 | [diff] [blame] | 171 | RETURN=$$? ;\ |
| 172 | $(GO_JUNIT_REPORT) < ./tests/results/go-test-results.out > ./tests/results/go-test-results.xml ;\ |
| 173 | $(GOCOVER_COBERTURA) < ./tests/results/go-test-coverage.out > ./tests/results/go-test-coverage.xml ;\ |
| 174 | exit $$RETURN |
| 175 | |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 176 | GOLANGCI_LINT_TOOL:=$(shell which golangci-lint) |
Scott Baker | a4cd50d | 2019-10-15 16:53:38 -0700 | [diff] [blame] | 177 | sca: golangci_lint_tool_install |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 178 | @mkdir -p ./sca-report |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 179 | golangci-lint run --out-format junit-xml ./... 2>&1 | tee ./sca-report/sca-report.xml |
Girish Gowdru | 6a80bbd | 2019-07-02 07:36:09 -0700 | [diff] [blame] | 180 | |
Matt Jeanneret | b5bf10e | 2019-05-18 15:02:51 -0400 | [diff] [blame] | 181 | clean: |
Matt Jeanneret | b5bf10e | 2019-05-18 15:02:51 -0400 | [diff] [blame] | 182 | |
| 183 | distclean: clean |
Scott Baker | a4cd50d | 2019-10-15 16:53:38 -0700 | [diff] [blame] | 184 | rm -rf ./sca_report |
Matt Jeanneret | b5bf10e | 2019-05-18 15:02:51 -0400 | [diff] [blame] | 185 | |
Phaneendra Manda | 4c62c80 | 2019-03-06 21:37:49 +0530 | [diff] [blame] | 186 | # end file |