blob: bfb85fd3c3151435f6ce74168461aa2ab82cedec [file] [log] [blame]
Matteo Scandolo4747d292019-08-05 11:50:18 -07001# Copyright 2019-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15VERSION ?= $(shell cat ./VERSION)
Matteo Scandolo84f7d482019-08-08 19:00:47 -070016DIFF ?= $(git diff --shortstat 2> /dev/null | tail -n1)
17GIT_STATUS ?= $(shell [[ $DIFF != "" ]] && echo "Dirty" || echo "Clean")
Matteo Scandolo4747d292019-08-05 11:50:18 -070018
19## Docker related
20DOCKER_TAG ?= ${VERSION}
21DOCKER_REPOSITORY ?= voltha/
22DOCKER_REGISTRY ?= ""
Matteo Scandolo4747d292019-08-05 11:50:18 -070023
24# Public targets
25
26all: help
27
Matteo Scandolod54283a2019-08-13 16:22:31 -070028protos: api/bbsim/bbsim.pb.go # @HELP Build proto files
Matteo Scandolo4747d292019-08-05 11:50:18 -070029
Matteo Scandolo11006992019-08-28 11:29:46 -070030dep: # @HELP Download the dependencies to the vendor folder
31 GO111MODULE=on go mod vendor
32
33build: dep protos # @HELP Build the binary
Matteo Scandoloc559ef12019-08-20 13:24:21 -070034 GO111MODULE=on go build -i -v -mod vendor \
Matteo Scandolo84f7d482019-08-08 19:00:47 -070035 -ldflags "-X main.buildTime=$(shell date +ā€%Y/%m/%d-%H:%M:%Sā€) \
36 -X main.commitHash=$(shell git log --pretty=format:%H -n 1) \
37 -X main.gitStatus=${GIT_STATUS} \
38 -X main.version=${VERSION}" \
39 -o ./cmd/bbsim ./internal/bbsim
Matteo Scandolo4747d292019-08-05 11:50:18 -070040
Matteo Scandolo11006992019-08-28 11:29:46 -070041test: dep protos # @HELP Execute unit tests
42 GO111MODULE=on go test -v -mod vendor ./internal/bbsim/... -covermode count -coverprofile ./tests/results/go-test-coverage.out 2>&1 | tee ./tests/results/go-test-results.out
43 go-junit-report < ./tests/results/go-test-results.out > ./tests/results/go-test-results.xml
44 gocover-cobertura < ./tests/results/go-test-coverage.out > ./tests/results/go-test-coverage.xml
Matteo Scandolo4747d292019-08-05 11:50:18 -070045
Matteo Scandolo84f7d482019-08-08 19:00:47 -070046docker-build: # @HELP Build a docker container
47 docker build --build-arg GIT_STATUS=${GIT_STATUS} -t ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}bbsim:${DOCKER_TAG} -f build/package/Dockerfile .
Matteo Scandolo4747d292019-08-05 11:50:18 -070048
Matteo Scandolo84f7d482019-08-08 19:00:47 -070049docker-push: # @HELP Push a docker container to a registry
Matteo Scandolo4747d292019-08-05 11:50:18 -070050 docker push ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}bbsim:${DOCKER_TAG}
51
52help: # @HELP Print the command options
53 @echo
54 @echo "\033[0;31m BroadBand Simulator (BBSim) \033[0m"
55 @echo
56 @echo Emulates the control plane of an openolt compatible device
57 @echo Useful for development and scale testing
58 @echo
59 @grep -E '^.*: .* *# *@HELP' $(MAKEFILE_LIST) \
60 | sort \
61 | awk ' \
62 BEGIN {FS = ": .* *# *@HELP"}; \
63 {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}; \
64 '
65
66
67# Internals
68
Matteo Scandolo84f7d482019-08-08 19:00:47 -070069api/openolt/openolt.pb.go: api/openolt/openolt.proto
70 @protoc -I . \
71 -I${GOPATH}/src \
72 -I${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
73 --go_out=plugins=grpc:./ \
74 $<
75
76api/bbsim/bbsim.pb.go: api/bbsim/bbsim.proto
Matteo Scandolo4747d292019-08-05 11:50:18 -070077 @protoc -I . \
78 -I${GOPATH}/src \
79 -I${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
80 --go_out=plugins=grpc:./ \
81 $<
82