| #Copyright 2018-present Open Networking Foundation |
| # |
| #Licensed under the Apache License, Version 2.0 (the "License"); |
| #you may not use this file except in compliance with the License. |
| #You may obtain a copy of the License at |
| # |
| #http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| #Unless required by applicable law or agreed to in writing, software |
| #distributed under the License is distributed on an "AS IS" BASIS, |
| #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| #See the License for the specific language governing permissions and |
| #limitations under the License. |
| |
| ######################################################################## |
| |
| # This Makefile provides hook for Jenkins to invoke the test target for |
| # CI integration. |
| # The main Makefile for product compilation is available at |
| # agent/Makefile. Please see ./README.md and ./agent/test/README.md for more |
| # details. |
| |
| # set default shell options |
| SHELL = bash -e -o pipefail |
| |
| ## Variables |
| OPENOLTDEVICE ?= asfvolt16 |
| OPENOLT_PROTO_VER ?= v3.1.0 |
| GTEST_VER ?= release-1.8.0 |
| CMOCK_VER ?= 0207b30 |
| GMOCK_GLOBAL_VER ?= 1.0.2 |
| GRPC_VER ?= v1.27.1 |
| |
| DOCKER ?= docker |
| DOCKER_REGISTRY ?= |
| DOCKER_REPOSITORY ?= voltha/ |
| DOCKER_EXTRA_ARGS ?= |
| DOCKER_TAG ?= 1.0.0 |
| IMAGENAME = ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}openolt-test:${DOCKER_TAG} |
| |
| DOCKER_BUILD_ARGS ?= \ |
| ${DOCKER_EXTRA_ARGS} \ |
| --build-arg OPENOLTDEVICE=${OPENOLTDEVICE} \ |
| --build-arg OPENOLT_PROTO_VER=${OPENOLT_PROTO_VER} \ |
| --build-arg GTEST_VER=${GTEST_VER} \ |
| --build-arg CMOCK_VER=${CMOCK_VER} \ |
| --build-arg GMOCK_GLOBAL_VER=${GMOCK_GLOBAL_VER} \ |
| --build-arg GRPC_VER=${GRPC_VER} |
| |
| test: |
| ${DOCKER} run --rm -v $(shell pwd):/app $(shell test -t 0 && echo "-it") ${IMAGENAME} make -C agent/test test |
| |
| clean: |
| ${DOCKER} run --rm -v $(shell pwd):/app $(shell test -t 0 && echo "-it") ${IMAGENAME} make -C agent/test clean |
| |
| cleanall: |
| ${DOCKER} run --rm -v $(shell pwd):/app $(shell test -t 0 && echo "-it") ${IMAGENAME} make -C agent/test clean |
| ${DOCKER} run --rm -v $(shell pwd):/app $(shell test -t 0 && echo "-it") ${IMAGENAME} make -C protos distclean |