blob: bdd4009c15c55827372657189918402362b47f13 [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
Sergio Slobodriancab0a392017-07-13 08:42:10 -040025.PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 docker-base voltha chameleon ofagent podder netconf shovel onos dashd vcli portainer grafana nginx consul registrator envoy
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."
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -040034 @echo "production : Build voltha for production deployment"
ggowdru9974f212017-06-06 23:31:25 -070035 @echo "clean : Remove files created by the build and tests"
36 @echo "distclean : Remove venv directory"
37 @echo "fetch : Pre-fetch artifacts for subsequent local builds"
38 @echo "flake8 : Run specifically flake8 tests"
39 @echo "help : Print this help"
40 @echo "protos : Compile all grpc/protobuf files"
41 @echo "rebuild-venv : Rebuild local Python virtualenv from scratch"
42 @echo "venv : Build local Python virtualenv if did not exist yet"
43 @echo "utest : Run all unit tests"
44 @echo "itest : Run all integration tests"
45 @echo "containers : Build all the docker containers"
46 @echo "docker-base : Build the base docker container used by all other dockers"
47 @echo "voltha : Build the voltha docker container"
48 @echo "chameleon : Build the chameleon docker container"
49 @echo "ofagent : Build the ofagent docker container"
50 @echo "podder : Build the podder docker container"
51 @echo "netconf : Build the netconf docker container"
52 @echo "shovel : Build the shovel docker container"
53 @echo "onos : Build the onos docker container"
54 @echo "dashd : Build the dashd docker container"
55 @echo "vcli : Build the vcli docker container"
56 @echo "portainer : Build the portainer docker container"
57 @echo "grafana : Build the grafana docker container"
58 @echo "nginx : Build the nginx docker container"
schowdhury40739212017-06-12 07:40:31 -070059 @echo "consul : Build the consul docker container"
ggowdru9974f212017-06-06 23:31:25 -070060 @echo
Nathan Knuth5157de02016-09-16 15:20:37 -070061
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070062## New directories can be added here
63DIRS:=\
Nathan Knuthdaa1f6e2016-09-17 00:17:31 -070064voltha \
Nathan Knuthedc88da2016-09-17 00:28:05 -070065voltha/northbound/openflow \
66voltha/northbound/openflow/agent \
67voltha/northbound/openflow/oftest
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070068
69## If one directory depends on another directory that
70## dependency can be expressed here
71##
72## For example, if the Tibit directory depended on the eoam
73## directory being built first, then that can be expressed here.
74## driver/tibit: eoam
75
76# Parallel Build
77$(DIRS):
78 @echo " MK $@"
79 $(Q)$(MAKE) -C $@
80
81# Parallel Clean
82DIRS_CLEAN = $(addsuffix .clean,$(DIRS))
83$(DIRS_CLEAN):
84 @echo " CLEAN $(basename $@)"
85 $(Q)$(MAKE) -C $(basename $@) clean
86
87# Parallel Flake8
88DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS))
89$(DIRS_FLAKE8):
90 @echo " FLAKE8 $(basename $@)"
Nathan Knuth950dff22016-09-17 16:12:34 -070091 -$(Q)$(MAKE) -C $(basename $@) flake8
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070092
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070093
Zsolt Harasztidb892332017-01-09 11:08:38 -080094build: protos containers
Zsolt Haraszti32dda552016-09-27 09:17:29 -070095
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -040096production: protos prod-containers
97
98
Sergio Slobodriancab0a392017-07-13 08:42:10 -040099prod-containers: docker-base voltha chameleon ofagent netconf shovel dashd vcli grafana consul registrator envoy registry
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -0400100
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400101containers: docker-base voltha chameleon ofagent podder netconf shovel onos tester config-push dashd vcli portainer grafana nginx consul registrator tools envoy
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500102
Rouzbahan Rashidi-Tabrizi95b68c52016-11-09 10:17:57 -0800103docker-base:
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -0800104 docker build -t cord/voltha-base -f docker/Dockerfile.base .
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700105
Shad Ansari83777cb2017-06-02 14:56:08 -0700106voltha: voltha-adapters
Zsolt Harasztidb892332017-01-09 11:08:38 -0800107 docker build -t cord/voltha -f docker/Dockerfile.voltha .
108
Shad Ansari83777cb2017-06-02 14:56:08 -0700109voltha-adapters:
110 make -C voltha/adapters/asfvolt16_olt
111
Zsolt Harasztidb892332017-01-09 11:08:38 -0800112chameleon:
alshabib13dd7482017-01-31 16:08:03 -0800113 mkdir tmp.chameleon
114 cp -R chameleon/* tmp.chameleon
Zsolt Harasztidb892332017-01-09 11:08:38 -0800115 docker build -t cord/chameleon -f docker/Dockerfile.chameleon .
alshabib13dd7482017-01-31 16:08:03 -0800116 rm -rf tmp.chameleon
Zsolt Harasztidb892332017-01-09 11:08:38 -0800117
118ofagent:
119 docker build -t cord/ofagent -f docker/Dockerfile.ofagent .
120
121podder:
122 docker build -t cord/podder -f docker/Dockerfile.podder .
123
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400124tools:
125 docker build -t voltha/tools -f docker/Dockerfile.tools .
126
127envoy:
128 docker build -t voltha/envoy -f docker/Dockerfile.envoy .
129
Zsolt Harasztidb892332017-01-09 11:08:38 -0800130netconf:
131 docker build -t cord/netconf -f docker/Dockerfile.netconf .
132
Stephane Barbarie14088962017-06-01 16:56:55 -0400133netopeer:
134 docker build -t cord/netopeer -f docker/Dockerfile.netopeer .
135
Zsolt Harasztidb892332017-01-09 11:08:38 -0800136shovel:
137 docker build -t cord/shovel -f docker/Dockerfile.shovel .
138
Sergio Slobodrian9358bd42017-03-10 22:52:24 -0500139dashd:
140 docker build -t cord/dashd -f docker/Dockerfile.dashd .
141
Sergio Slobodrianab11c642017-04-24 07:16:58 -0400142vcli:
143 docker build -t cord/vcli -f docker/Dockerfile.cli .
144
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400145portainer:
146 portainer/buildPortainer.sh
147
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400148nginx:
149 docker build -t voltha/nginx -f docker/Dockerfile.nginx .
150
schowdhury40739212017-06-12 07:40:31 -0700151consul:
152 docker build -t voltha/consul -f docker/Dockerfile.consul .
153
154registrator:
155 docker build -t voltha/registrator -f docker/Dockerfile.registrator .
156
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400157grafana:
158 docker build -t voltha/grafana -f docker/Dockerfile.grafana .
159
Zsolt Harasztidb892332017-01-09 11:08:38 -0800160onos:
Zsolt Haraszti9ed54292017-01-09 18:28:32 -0800161 docker build -t cord/onos -f docker/Dockerfile.onos docker
Zsolt Harasztidb892332017-01-09 11:08:38 -0800162
alshabib5e180572017-01-10 23:59:47 -0600163tester:
alshabibe58f2fd2017-01-11 14:18:13 -0600164 docker build -t cord/tester -f docker/Dockerfile.tester docker
alshabib5e180572017-01-10 23:59:47 -0600165
alshabiba5514082017-03-31 11:08:27 -0500166config-push:
167 docker build -t cord/config-push -f docker/Dockerfile.configpush docker
168
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400169
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700170protos:
171 make -C voltha/protos
172 make -C chameleon/protos
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700173 make -C ofagent/protos
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500174 make -C netconf/protos
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700175
176install-protoc:
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700177 make -C voltha/protos install-protoc
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700178
Zsolt Harasztib71c2a02016-09-12 13:12:07 -0700179clean:
180 find voltha -name '*.pyc' | xargs rm -f
181
Nathan Knutha6b09e32016-09-21 16:26:09 -0700182distclean: clean
183 rm -rf ${VENVDIR}
184
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700185fetch:
Zsolt Harasztif2da1d02016-09-13 23:21:35 -0700186 docker pull consul:latest
187 docker pull fluent/fluentd:latest
schowdhurya260f5b2017-06-14 15:54:25 -0700188 docker pull gliderlabs/registrator:master
Zsolt Haraszti0650d1a2016-09-26 17:29:25 -0700189 docker pull ubuntu:xenial
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400190 docker pull wurstmeister/kafka:latest
191 docker pull wurstmeister/zookeeper:latest
Stephane Barbarie7ba064f2017-06-20 10:57:20 -0400192 docker pull zookeeper:latest
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400193 docker pull nginx:latest
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400194 docker pull portainer/portainer:latest
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400195 docker pull lyft/envoy:latest
196 docker pull registry:2
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700197
198purge-venv:
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700199 rm -fr ${VENVDIR}
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700200
201rebuild-venv: purge-venv venv
202
203venv: ${VENVDIR}/.built
204
205${VENVDIR}/.built:
206 @ virtualenv ${VENVDIR}
207 @ . ${VENVDIR}/bin/activate && \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700208 pip install --upgrade pip; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700209 if ! pip install -r requirements.txt; \
210 then \
211 echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \
212 echo "see the BUILD.md file for a workaround"; \
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700213 else \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700214 uname -s > ${VENVDIR}/.built; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700215 fi
216
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800217test: venv protos run-as-root-tests
218 @ echo "Executing all tests"
219 . ${VENVDIR}/bin/activate && \
220 nosetests -s tests \
221 --exclude-dir=./tests/itests/run_as_root/
222
Zsolt Haraszti66186622016-11-08 14:24:00 -0800223utest: venv protos
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700224 @ echo "Executing all unit tests"
225 . ${VENVDIR}/bin/activate && \
alshabib29a3ed52017-01-23 14:29:21 -0800226 for d in $$(find ./tests/utests -depth -type d); do echo $$d:; nosetests $$d; done
227
228utest-with-coverage: venv protos
229 @ echo "Executing all unit tests and producing coverage results"
230 . ${VENVDIR}/bin/activate && \
231 for d in $$(find ./tests/utests -depth -type d); do echo $$d:; \
232 nosetests --with-xcoverage --with-xunit --cover-package=voltha,common,ofagent,chameleon $$d; done
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400233
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800234itest: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800235 @ echo "Executing all integration tests"
236 . ${VENVDIR}/bin/activate && \
237 nosetests -s \
238 tests/itests/docutests/build_md_test.py \
239 --exclude-dir=./tests/utests/ \
240 --exclude-dir=./tests/itests/run_as_root/
241
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800242smoke-test: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800243 @ echo "Executing smoke tests"
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800244 . ${VENVDIR}/bin/activate && \
245 nosetests -s \
246 tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800247 --exclude-dir=./tests/itests/run_as_root/
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800248
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800249
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800250run-as-root-tests:
alshabibeef9b132017-02-02 17:46:51 -0800251 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 -0700252
253flake8: $(DIRS_FLAKE8)
Nathan Knuth220a6772016-10-11 08:10:46 -0700254
255# end file