blob: c308592a6cb05fcaa8c98809f5c40bae711b4a6b [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:]')
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070024
schowdhury40739212017-06-12 07:40:31 -070025.PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 docker-base voltha chameleon ofagent podder netconf shovel onos dashd vcli portainer grafana nginx consul registrator
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070026
ggowdru9974f212017-06-06 23:31:25 -070027# This should to be the first and default target in this Makefile
28help:
29 @echo "Usage: make [<target>]"
30 @echo "where available targets are:"
31 @echo
32 @echo "build : Build the Voltha protos and docker images.\n\
33 If this is the first time you are building, choose \"make build\" option."
34 @echo "clean : Remove files created by the build and tests"
35 @echo "distclean : Remove venv directory"
36 @echo "fetch : Pre-fetch artifacts for subsequent local builds"
37 @echo "flake8 : Run specifically flake8 tests"
38 @echo "help : Print this help"
39 @echo "protos : Compile all grpc/protobuf files"
40 @echo "rebuild-venv : Rebuild local Python virtualenv from scratch"
41 @echo "venv : Build local Python virtualenv if did not exist yet"
42 @echo "utest : Run all unit tests"
43 @echo "itest : Run all integration tests"
44 @echo "containers : Build all the docker containers"
45 @echo "docker-base : Build the base docker container used by all other dockers"
46 @echo "voltha : Build the voltha docker container"
47 @echo "chameleon : Build the chameleon docker container"
48 @echo "ofagent : Build the ofagent docker container"
49 @echo "podder : Build the podder docker container"
50 @echo "netconf : Build the netconf docker container"
51 @echo "shovel : Build the shovel docker container"
52 @echo "onos : Build the onos docker container"
53 @echo "dashd : Build the dashd docker container"
54 @echo "vcli : Build the vcli docker container"
55 @echo "portainer : Build the portainer docker container"
56 @echo "grafana : Build the grafana docker container"
57 @echo "nginx : Build the nginx docker container"
schowdhury40739212017-06-12 07:40:31 -070058 @echo "consul : Build the consul docker container"
ggowdru9974f212017-06-06 23:31:25 -070059 @echo
Nathan Knuth5157de02016-09-16 15:20:37 -070060
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070061## New directories can be added here
62DIRS:=\
Nathan Knuthdaa1f6e2016-09-17 00:17:31 -070063voltha \
Nathan Knuthedc88da2016-09-17 00:28:05 -070064voltha/northbound/openflow \
65voltha/northbound/openflow/agent \
66voltha/northbound/openflow/oftest
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070067
68## If one directory depends on another directory that
69## dependency can be expressed here
70##
71## For example, if the Tibit directory depended on the eoam
72## directory being built first, then that can be expressed here.
73## driver/tibit: eoam
74
75# Parallel Build
76$(DIRS):
77 @echo " MK $@"
78 $(Q)$(MAKE) -C $@
79
80# Parallel Clean
81DIRS_CLEAN = $(addsuffix .clean,$(DIRS))
82$(DIRS_CLEAN):
83 @echo " CLEAN $(basename $@)"
84 $(Q)$(MAKE) -C $(basename $@) clean
85
86# Parallel Flake8
87DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS))
88$(DIRS_FLAKE8):
89 @echo " FLAKE8 $(basename $@)"
Nathan Knuth950dff22016-09-17 16:12:34 -070090 -$(Q)$(MAKE) -C $(basename $@) flake8
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070091
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070092
Zsolt Harasztidb892332017-01-09 11:08:38 -080093build: protos containers
Zsolt Haraszti32dda552016-09-27 09:17:29 -070094
schowdhury40739212017-06-12 07:40:31 -070095containers: docker-base voltha chameleon ofagent podder netconf shovel onos tester config-push dashd vcli portainer grafana nginx consul registrator
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050096
Rouzbahan Rashidi-Tabrizi95b68c52016-11-09 10:17:57 -080097docker-base:
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -080098 docker build -t cord/voltha-base -f docker/Dockerfile.base .
Zsolt Haraszti51af3392016-09-10 22:18:45 -070099
Shad Ansari83777cb2017-06-02 14:56:08 -0700100voltha: voltha-adapters
Zsolt Harasztidb892332017-01-09 11:08:38 -0800101 docker build -t cord/voltha -f docker/Dockerfile.voltha .
102
Shad Ansari83777cb2017-06-02 14:56:08 -0700103voltha-adapters:
104 make -C voltha/adapters/asfvolt16_olt
105
Zsolt Harasztidb892332017-01-09 11:08:38 -0800106chameleon:
alshabib13dd7482017-01-31 16:08:03 -0800107 mkdir tmp.chameleon
108 cp -R chameleon/* tmp.chameleon
Zsolt Harasztidb892332017-01-09 11:08:38 -0800109 docker build -t cord/chameleon -f docker/Dockerfile.chameleon .
alshabib13dd7482017-01-31 16:08:03 -0800110 rm -rf tmp.chameleon
Zsolt Harasztidb892332017-01-09 11:08:38 -0800111
112ofagent:
113 docker build -t cord/ofagent -f docker/Dockerfile.ofagent .
114
115podder:
116 docker build -t cord/podder -f docker/Dockerfile.podder .
117
118netconf:
119 docker build -t cord/netconf -f docker/Dockerfile.netconf .
120
Stephane Barbarie14088962017-06-01 16:56:55 -0400121netopeer:
122 docker build -t cord/netopeer -f docker/Dockerfile.netopeer .
123
Zsolt Harasztidb892332017-01-09 11:08:38 -0800124shovel:
125 docker build -t cord/shovel -f docker/Dockerfile.shovel .
126
Sergio Slobodrian9358bd42017-03-10 22:52:24 -0500127dashd:
128 docker build -t cord/dashd -f docker/Dockerfile.dashd .
129
Sergio Slobodrianab11c642017-04-24 07:16:58 -0400130vcli:
131 docker build -t cord/vcli -f docker/Dockerfile.cli .
132
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400133portainer:
134 portainer/buildPortainer.sh
135
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400136nginx:
137 docker build -t voltha/nginx -f docker/Dockerfile.nginx .
138
schowdhury40739212017-06-12 07:40:31 -0700139consul:
140 docker build -t voltha/consul -f docker/Dockerfile.consul .
141
142registrator:
143 docker build -t voltha/registrator -f docker/Dockerfile.registrator .
144
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400145grafana:
146 docker build -t voltha/grafana -f docker/Dockerfile.grafana .
147
Zsolt Harasztidb892332017-01-09 11:08:38 -0800148onos:
Zsolt Haraszti9ed54292017-01-09 18:28:32 -0800149 docker build -t cord/onos -f docker/Dockerfile.onos docker
Zsolt Harasztidb892332017-01-09 11:08:38 -0800150
alshabib5e180572017-01-10 23:59:47 -0600151tester:
alshabibe58f2fd2017-01-11 14:18:13 -0600152 docker build -t cord/tester -f docker/Dockerfile.tester docker
alshabib5e180572017-01-10 23:59:47 -0600153
alshabiba5514082017-03-31 11:08:27 -0500154config-push:
155 docker build -t cord/config-push -f docker/Dockerfile.configpush docker
156
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400157
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700158protos:
159 make -C voltha/protos
160 make -C chameleon/protos
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700161 make -C ofagent/protos
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500162 make -C netconf/protos
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700163
164install-protoc:
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700165 make -C voltha/protos install-protoc
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700166
Zsolt Harasztib71c2a02016-09-12 13:12:07 -0700167clean:
168 find voltha -name '*.pyc' | xargs rm -f
169
Nathan Knutha6b09e32016-09-21 16:26:09 -0700170distclean: clean
171 rm -rf ${VENVDIR}
172
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700173fetch:
Zsolt Harasztif2da1d02016-09-13 23:21:35 -0700174 docker pull consul:latest
175 docker pull fluent/fluentd:latest
schowdhurya260f5b2017-06-14 15:54:25 -0700176 docker pull gliderlabs/registrator:master
Zsolt Haraszti0650d1a2016-09-26 17:29:25 -0700177 docker pull ubuntu:xenial
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400178 docker pull wurstmeister/kafka:latest
179 docker pull wurstmeister/zookeeper:latest
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400180 docker pull nginx:latest
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400181 docker pull portainer/portainer:latest
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700182
183purge-venv:
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700184 rm -fr ${VENVDIR}
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700185
186rebuild-venv: purge-venv venv
187
188venv: ${VENVDIR}/.built
189
190${VENVDIR}/.built:
191 @ virtualenv ${VENVDIR}
192 @ . ${VENVDIR}/bin/activate && \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700193 pip install --upgrade pip; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700194 if ! pip install -r requirements.txt; \
195 then \
196 echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \
197 echo "see the BUILD.md file for a workaround"; \
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700198 else \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700199 uname -s > ${VENVDIR}/.built; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700200 fi
201
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800202test: venv protos run-as-root-tests
203 @ echo "Executing all tests"
204 . ${VENVDIR}/bin/activate && \
205 nosetests -s tests \
206 --exclude-dir=./tests/itests/run_as_root/
207
Zsolt Haraszti66186622016-11-08 14:24:00 -0800208utest: venv protos
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700209 @ echo "Executing all unit tests"
210 . ${VENVDIR}/bin/activate && \
alshabib29a3ed52017-01-23 14:29:21 -0800211 for d in $$(find ./tests/utests -depth -type d); do echo $$d:; nosetests $$d; done
212
213utest-with-coverage: venv protos
214 @ echo "Executing all unit tests and producing coverage results"
215 . ${VENVDIR}/bin/activate && \
216 for d in $$(find ./tests/utests -depth -type d); do echo $$d:; \
217 nosetests --with-xcoverage --with-xunit --cover-package=voltha,common,ofagent,chameleon $$d; done
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400218
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800219itest: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800220 @ echo "Executing all integration tests"
221 . ${VENVDIR}/bin/activate && \
222 nosetests -s \
223 tests/itests/docutests/build_md_test.py \
224 --exclude-dir=./tests/utests/ \
225 --exclude-dir=./tests/itests/run_as_root/
226
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800227smoke-test: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800228 @ echo "Executing smoke tests"
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800229 . ${VENVDIR}/bin/activate && \
230 nosetests -s \
231 tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800232 --exclude-dir=./tests/itests/run_as_root/
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800233
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800234
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800235run-as-root-tests:
alshabibeef9b132017-02-02 17:46:51 -0800236 docker run -i --rm -v /cord/incubator/voltha:/voltha --privileged cord/voltha-base env PYTHONPATH=/voltha python /voltha/tests/itests/run_as_root/test_frameio.py
Nathan Knuth84dfd2e2016-09-16 15:06:34 -0700237
238flake8: $(DIRS_FLAKE8)
Nathan Knuth220a6772016-10-11 08:10:46 -0700239
240# end file