blob: fb736f52102ad4e280ce58834611e8b80dff01b7 [file] [log] [blame]
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -07001#
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
Nathan Knuthedc88da2016-09-17 00:28:05 -070017ifeq ($(VOLTHA_BASE)_set,_set)
18$(error To get started, please source the env.sh file)
19endif
20
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070021include setup.mk
22
Zsolt Haraszti41612482016-09-21 12:26:20 -070023VENVDIR := venv-$(shell uname -s | tr '[:upper:]' '[:lower:]')
Khen Nursimulu96bb5322016-11-09 20:16:03 -080024DOCKER_CMD := docker pull consul
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070025
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070026.PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8
27
Nathan Knuth5157de02016-09-16 15:20:37 -070028default: build
29
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070030## New directories can be added here
31DIRS:=\
Nathan Knuthdaa1f6e2016-09-17 00:17:31 -070032voltha \
Nathan Knuthedc88da2016-09-17 00:28:05 -070033voltha/northbound/openflow \
34voltha/northbound/openflow/agent \
35voltha/northbound/openflow/oftest
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070036
37## If one directory depends on another directory that
38## dependency can be expressed here
39##
40## For example, if the Tibit directory depended on the eoam
41## directory being built first, then that can be expressed here.
42## driver/tibit: eoam
43
44# Parallel Build
45$(DIRS):
46 @echo " MK $@"
47 $(Q)$(MAKE) -C $@
48
49# Parallel Clean
50DIRS_CLEAN = $(addsuffix .clean,$(DIRS))
51$(DIRS_CLEAN):
52 @echo " CLEAN $(basename $@)"
53 $(Q)$(MAKE) -C $(basename $@) clean
54
55# Parallel Flake8
56DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS))
57$(DIRS_FLAKE8):
58 @echo " FLAKE8 $(basename $@)"
Nathan Knuth950dff22016-09-17 16:12:34 -070059 -$(Q)$(MAKE) -C $(basename $@) flake8
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070060
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070061help:
62 @echo "Usage: make [<target>]"
63 @echo "where available targets are:"
64 @echo
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070065 @echo "build : Build the Voltha docker images (default target)"
Zsolt Harasztib71c2a02016-09-12 13:12:07 -070066 @echo "clean : Remove files created by the build and tests"
Nathan Knutha6b09e32016-09-21 16:26:09 -070067 @echo "distclean : Remove venv directory"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070068 @echo "fetch : Pre-fetch artifacts for subsequent local builds"
Nathan Knuthc0a80c82016-09-16 15:17:45 -070069 @echo "flake8 : Run specifically flake8 tests"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070070 @echo "help : Print this help"
Zsolt Haraszti5cd64702016-09-27 13:48:35 -070071 @echo "protos : Compile all grpc/protobuf files"
Zsolt Haraszti51af3392016-09-10 22:18:45 -070072 @echo "rebuild-venv : Rebuild local Python virtualenv from scratch"
73 @echo "venv : Build local Python virtualenv if did not exist yet"
74 @echo "utest : Run all unit tests"
Khen Nursimulu96bb5322016-11-09 20:16:03 -080075 @echo "itest : Run all integration tests"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070076 @echo
77
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -070078build: protos docker-base
Zsolt Haraszti32dda552016-09-27 09:17:29 -070079 docker build -t cord/voltha -f Dockerfile.voltha .
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070080 docker build -t cord/chameleon -f Dockerfile.chameleon .
Khen Nursimulu68b9be32016-10-25 11:57:04 -040081 docker build -t cord/ofagent -f Dockerfile.ofagent .
alshabib7941d402016-11-08 00:11:20 +010082 docker build -t cord/podder -f Dockerfile.podder .
Zsolt Haraszti32dda552016-09-27 09:17:29 -070083
Rouzbahan Rashidi-Tabrizi95b68c52016-11-09 10:17:57 -080084docker-base:
Zsolt Haraszti32dda552016-09-27 09:17:29 -070085 docker build -t cord/voltha-base -f Dockerfile.base .
Zsolt Haraszti51af3392016-09-10 22:18:45 -070086
Zsolt Haraszti5cd64702016-09-27 13:48:35 -070087protos:
88 make -C voltha/protos
89 make -C chameleon/protos
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -070090 make -C ofagent/protos
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -070091
92install-protoc:
Zsolt Haraszti5cd64702016-09-27 13:48:35 -070093 make -C voltha/protos install-protoc
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -070094
Zsolt Harasztib71c2a02016-09-12 13:12:07 -070095clean:
96 find voltha -name '*.pyc' | xargs rm -f
97
Nathan Knutha6b09e32016-09-21 16:26:09 -070098distclean: clean
99 rm -rf ${VENVDIR}
100
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700101fetch:
Zsolt Harasztif2da1d02016-09-13 23:21:35 -0700102 docker pull consul:latest
103 docker pull fluent/fluentd:latest
104 docker pull gliderlabs/registrator:latest
Zsolt Haraszti0650d1a2016-09-26 17:29:25 -0700105 docker pull ubuntu:xenial
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400106 docker pull wurstmeister/kafka:latest
107 docker pull wurstmeister/zookeeper:latest
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700108
109purge-venv:
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700110 rm -fr ${VENVDIR}
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700111
112rebuild-venv: purge-venv venv
113
114venv: ${VENVDIR}/.built
115
116${VENVDIR}/.built:
117 @ virtualenv ${VENVDIR}
118 @ . ${VENVDIR}/bin/activate && \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700119 pip install --upgrade pip; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700120 if ! pip install -r requirements.txt; \
121 then \
122 echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \
123 echo "see the BUILD.md file for a workaround"; \
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700124 else \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700125 uname -s > ${VENVDIR}/.built; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700126 fi
127
Zsolt Haraszti66186622016-11-08 14:24:00 -0800128utest: venv protos
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700129 @ echo "Executing all unit tests"
130 . ${VENVDIR}/bin/activate && \
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400131 nosetests tests --exclude-dir=./tests/itests/
132
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800133itest: venv frameio
134 @ echo "Executing sanity integration tests"
135 . ${VENVDIR}/bin/activate && \
136 nosetests -s \
137 tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \
138 --exclude-dir=./tests/itests/frameio_tests/run_as_root/
139
140itest-all: venv frameio
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400141 @ echo "Executing all integration tests"
142 . ${VENVDIR}/bin/activate && \
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800143 nosetests -s \
144 tests/itests/docutests/build_md_test.py \
145 --exclude-dir=./tests/itests/frameio_tests/run_as_root/
146
147frameio:
148 docker run -ti --rm -v /voltha:/voltha --privileged cord/voltha-base env PYTHONPATH=/voltha python /voltha/tests/itests/frameio_tests/run_as_root/test_frameio.py
Nathan Knuth84dfd2e2016-09-16 15:06:34 -0700149
150flake8: $(DIRS_FLAKE8)
Nathan Knuth220a6772016-10-11 08:10:46 -0700151
152# end file