Don Newton | 98fd881 | 2019-09-23 15:15:02 -0400 | [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 | |
| 17 | # set default shell |
| 18 | SHELL = bash -e -o pipefail |
| 19 | |
| 20 | # Variables |
| 21 | VERSION ?= $(shell cat ./VERSION) |
| 22 | |
| 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 |
| 27 | ## Docker related |
| 28 | DOCKER_EXTRA_ARGS ?= |
| 29 | DOCKER_REGISTRY ?= |
| 30 | DOCKER_REPOSITORY ?= |
| 31 | DOCKER_TAG ?= ${VERSION} |
| 32 | ADAPTER_IMAGENAME := ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}ofagent-go:${DOCKER_TAG} |
| 33 | |
| 34 | ## Docker labels. Only set ref and commit date if committed |
| 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) |
| 39 | |
| 40 | DOCKER_BUILD_ARGS ?= \ |
| 41 | ${DOCKER_EXTRA_ARGS} \ |
| 42 | --build-arg org_label_schema_version="${VERSION}" \ |
| 43 | --build-arg org_label_schema_vcs_url="${DOCKER_LABEL_VCS_URL}" \ |
| 44 | --build-arg org_label_schema_vcs_ref="${DOCKER_LABEL_VCS_REF}" \ |
| 45 | --build-arg org_label_schema_build_date="${DOCKER_LABEL_BUILD_DATE}" \ |
| 46 | --build-arg org_opencord_vcs_commit_date="${DOCKER_LABEL_COMMIT_DATE}" \ |
| 47 | --build-arg org_opencord_vcs_dirty="${DOCKER_LABEL_VCS_DIRTY}" |
| 48 | |
| 49 | DOCKER_BUILD_ARGS_LOCAL ?= ${DOCKER_BUILD_ARGS} \ |
| 50 | --build-arg LOCAL_PROTOS=${LOCAL_PROTOS} |
| 51 | |
| 52 | .PHONY: docker-build local-protos local-voltha |
| 53 | |
| 54 | # This should to be the first and default target in this Makefile |
| 55 | help: |
| 56 | @echo "Usage: make [<target>]" |
| 57 | @echo "where available targets are:" |
| 58 | @echo |
| 59 | @echo "docker-build : Build ofagent-go docker image" |
| 60 | @echo "help : Print this help" |
| 61 | @echo "docker-push : Push the docker images to an external repository" |
| 62 | @echo "lint : Run lint verification, depenancy, gofmt and reference check" |
| 63 | @echo "sca : Runs various SCA through golangci-lint tool" |
| 64 | @echo "test : Run unit tests, if any" |
| 65 | @echo |
| 66 | |
| 67 | |
| 68 | ## Local Development Helpers |
| 69 | |
| 70 | local-protos: |
| 71 | ifdef LOCAL_PROTOS |
| 72 | mkdir -p vendor/github.com/opencord/voltha-protos/go |
| 73 | cp -r ${GOPATH}/src/github.com/opencord/voltha-protos/go/* vendor/github.com/opencord/voltha-protos/go |
| 74 | endif |
| 75 | |
| 76 | local-voltha: |
| 77 | ifdef LOCAL_VOLTHA |
| 78 | mkdir -p vendor/github.com/opencord/voltha-go/ |
| 79 | cp -rf ${GOPATH}/src/github.com/opencord/voltha-go/ vendor/github.com/opencord/ |
| 80 | rm -rf vendor/github.com/opencord/voltha-go/vendor |
| 81 | endif |
| 82 | |
| 83 | |
| 84 | ## Docker targets |
| 85 | |
| 86 | docker-build: local-protos local-voltha |
| 87 | docker build $(DOCKER_BUILD_ARGS) -t ${ADAPTER_IMAGENAME} -f docker/Dockerfile.ofagent-go . |
| 88 | |
| 89 | docker-push: |
| 90 | docker push ${ADAPTER_IMAGENAME} |
| 91 | |
| 92 | ## lint and unit tests |
| 93 | |
| 94 | lint-style: |
| 95 | ifeq (,$(shell which gofmt)) |
| 96 | go get -u github.com/golang/go/src/cmd/gofmt |
| 97 | endif |
| 98 | @echo "Running style check..." |
| 99 | @gofmt_out="$$(gofmt -l $$(find . -name '*.go' -not -path './vendor/*'))" ;\ |
| 100 | if [ ! -z "$$gofmt_out" ]; then \ |
| 101 | echo "$$gofmt_out" ;\ |
| 102 | echo "Style check failed on one or more files ^, run 'go fmt' to fix." ;\ |
| 103 | exit 1 ;\ |
| 104 | fi |
| 105 | @echo "Style check OK" |
| 106 | |
| 107 | lint-sanity: |
| 108 | @echo "Running sanity check..." |
| 109 | @go vet ./... |
| 110 | @echo "Sanity check OK" |
| 111 | |
| 112 | lint-dep: |
| 113 | @echo "Running dependency check..." |
| 114 | @dep check |
| 115 | @echo "Dependency check OK" |
| 116 | |
| 117 | lint: lint-style lint-sanity lint-dep |
| 118 | |
| 119 | GO_JUNIT_REPORT:=$(shell which go-junit-report) |
| 120 | GOCOVER_COBERTURA:=$(shell which gocover-cobertura) |
| 121 | test: |
| 122 | ifeq (,$(GO_JUNIT_REPORT)) |
| 123 | go get -u github.com/jstemmer/go-junit-report |
| 124 | @GO_JUNIT_REPORT=$(GOPATH)/bin/go-junit-report |
| 125 | endif |
| 126 | |
| 127 | ifeq (,$(GOCOVER_COBERTURA)) |
| 128 | go get -u github.com/t-yuki/gocover-cobertura |
| 129 | @GOCOVER_COBERTURA=$(GOPATH)/bin/gocover-cobertura |
| 130 | endif |
| 131 | |
| 132 | @mkdir -p ./tests/results |
| 133 | |
| 134 | @go test -v -coverprofile ./tests/results/go-test-coverage.out -covermode count ./... 2>&1 | tee ./tests/results/go-test-results.out ;\ |
| 135 | RETURN=$$? ;\ |
| 136 | $(GO_JUNIT_REPORT) < ./tests/results/go-test-results.out > ./tests/results/go-test-results.xml ;\ |
| 137 | $(GOCOVER_COBERTURA) < ./tests/results/go-test-coverage.out > ./tests/results/go-test-coverage.xml ;\ |
| 138 | exit $$RETURN |
| 139 | |
| 140 | GOLANGCI_LINT_TOOL:=$(shell which golangci-lint) |
| 141 | sca: |
| 142 | ifeq (,$(GOLANGCI_LINT_TOOL)) |
| 143 | @echo "Please install golangci-lint tool to run sca" |
| 144 | exit 1 |
| 145 | endif |
| 146 | @mkdir -p ./sca-report |
| 147 | GO111MODULE=on golangci-lint run --out-format junit-xml ./... 2>&1 | tee ./sca-report/sca-report.xml ;\ |
| 148 | RETURN=$$? ;\ |
| 149 | exit $$RETURN |
| 150 | |
| 151 | clean: |
| 152 | rm -rf sca-report |
| 153 | |
| 154 | distclean: clean |
| 155 | rm -rf ${VENVDIR} |
| 156 | |
| 157 | # end file |