blob: 04f7f159c3bb27f6c72d0de8521a0924918109cf [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
Matteo Scandolo8df63df2019-09-12 10:34:32 -070033build: dep protos build-bbsim build-bbsimctl# @HELP Build the binary
Matteo Scandolo4747d292019-08-05 11:50:18 -070034
Matteo Scandolo11006992019-08-28 11:29:46 -070035test: dep protos # @HELP Execute unit tests
36 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
37 go-junit-report < ./tests/results/go-test-results.out > ./tests/results/go-test-results.xml
38 gocover-cobertura < ./tests/results/go-test-coverage.out > ./tests/results/go-test-coverage.xml
Matteo Scandolo4747d292019-08-05 11:50:18 -070039
Matteo Scandolo84f7d482019-08-08 19:00:47 -070040docker-build: # @HELP Build a docker container
41 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 -070042
Matteo Scandolo84f7d482019-08-08 19:00:47 -070043docker-push: # @HELP Push a docker container to a registry
Matteo Scandolo4747d292019-08-05 11:50:18 -070044 docker push ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}bbsim:${DOCKER_TAG}
45
46help: # @HELP Print the command options
47 @echo
48 @echo "\033[0;31m BroadBand Simulator (BBSim) \033[0m"
49 @echo
50 @echo Emulates the control plane of an openolt compatible device
51 @echo Useful for development and scale testing
52 @echo
53 @grep -E '^.*: .* *# *@HELP' $(MAKEFILE_LIST) \
54 | sort \
55 | awk ' \
56 BEGIN {FS = ": .* *# *@HELP"}; \
57 {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}; \
58 '
59
60
61# Internals
Matteo Scandolo8df63df2019-09-12 10:34:32 -070062build-bbsim:
63 GO111MODULE=on go build -i -v -mod vendor \
64 -ldflags "-X main.buildTime=$(shell date +ā€%Y/%m/%d-%H:%M:%Sā€) \
65 -X main.commitHash=$(shell git log --pretty=format:%H -n 1) \
66 -X main.gitStatus=${GIT_STATUS} \
67 -X main.version=${VERSION}" \
68 -o ./cmd/bbsim ./internal/bbsim
69
70build-bbsimctl:
71 GO111MODULE=on go build -i -v -mod vendor \
72 -ldflags "-X github.com/opencord/bbsim/internal/bbsimctl/config.BuildTime=$(shell date +ā€%Y/%m/%d-%H:%M:%Sā€) \
73 -X github.com/opencord/bbsim/internal/bbsimctl/config.CommitHash=$(shell git log --pretty=format:%H -n 1) \
74 -X github.com/opencord/bbsim/internal/bbsimctl/config.GitStatus=${GIT_STATUS} \
75 -X github.com/opencord/bbsim/internal/bbsimctl/config.Version=${VERSION}" \
76 ./cmd/bbsimctl
Matteo Scandolo4747d292019-08-05 11:50:18 -070077
Matteo Scandolo84f7d482019-08-08 19:00:47 -070078api/openolt/openolt.pb.go: api/openolt/openolt.proto
79 @protoc -I . \
80 -I${GOPATH}/src \
81 -I${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
82 --go_out=plugins=grpc:./ \
83 $<
84
85api/bbsim/bbsim.pb.go: api/bbsim/bbsim.proto
Matteo Scandolo4747d292019-08-05 11:50:18 -070086 @protoc -I . \
87 -I${GOPATH}/src \
88 -I${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
89 --go_out=plugins=grpc:./ \
90 $<
91