blob: 8f719678b1007e8724946cd2feb2bb4912cdfa31 [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
David K. Bainbridge215e0242017-09-05 23:18:24 -070025.PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 docker-base voltha chameleon ofagent podder netconf shovel onos dashd vcli portainer grafana nginx consul registrator envoy golang envoyd tools opennms logstash unum
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"
David K. Bainbridge215e0242017-09-05 23:18:24 -070060 @echo "unum : Build the unum docker container"
ggowdru9974f212017-06-06 23:31:25 -070061 @echo
Nathan Knuth5157de02016-09-16 15:20:37 -070062
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070063## New directories can be added here
64DIRS:=\
Nathan Knuthdaa1f6e2016-09-17 00:17:31 -070065voltha \
Nathan Knuthedc88da2016-09-17 00:28:05 -070066voltha/northbound/openflow \
67voltha/northbound/openflow/agent \
68voltha/northbound/openflow/oftest
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070069
70## If one directory depends on another directory that
71## dependency can be expressed here
72##
73## For example, if the Tibit directory depended on the eoam
74## directory being built first, then that can be expressed here.
75## driver/tibit: eoam
76
77# Parallel Build
78$(DIRS):
79 @echo " MK $@"
80 $(Q)$(MAKE) -C $@
81
82# Parallel Clean
83DIRS_CLEAN = $(addsuffix .clean,$(DIRS))
84$(DIRS_CLEAN):
85 @echo " CLEAN $(basename $@)"
86 $(Q)$(MAKE) -C $(basename $@) clean
87
88# Parallel Flake8
89DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS))
90$(DIRS_FLAKE8):
91 @echo " FLAKE8 $(basename $@)"
Nathan Knuth950dff22016-09-17 16:12:34 -070092 -$(Q)$(MAKE) -C $(basename $@) flake8
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070093
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070094
Zsolt Harasztidb892332017-01-09 11:08:38 -080095build: protos containers
Zsolt Haraszti32dda552016-09-27 09:17:29 -070096
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -040097production: protos prod-containers
98
khenaidoofe874ae2017-07-14 18:07:27 -040099jenkins : protos jenkins-containers
100
David K. Bainbridge215e0242017-09-05 23:18:24 -0700101jenkins-containers: docker-base voltha chameleon ofagent netconf consul registrator unum
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -0400102
David K. Bainbridge215e0242017-09-05 23:18:24 -0700103prod-containers: docker-base voltha chameleon ofagent netconf shovel dashd vcli grafana consul tools golang envoyd envoy fluentd unum
Sergio Slobodrian7a7091c2017-06-21 23:45:45 -0400104
David K. Bainbridge215e0242017-09-05 23:18:24 -0700105containers: docker-base voltha chameleon ofagent podder netconf shovel onos tester config-push dashd vcli portainer grafana nginx consul registrator tools golang envoyd envoy fluentd unum
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500106
Rouzbahan Rashidi-Tabrizi95b68c52016-11-09 10:17:57 -0800107docker-base:
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -0800108 docker build -t cord/voltha-base -f docker/Dockerfile.base .
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700109
Shad Ansari83777cb2017-06-02 14:56:08 -0700110voltha: voltha-adapters
Zsolt Harasztidb892332017-01-09 11:08:38 -0800111 docker build -t cord/voltha -f docker/Dockerfile.voltha .
112
Shad Ansari83777cb2017-06-02 14:56:08 -0700113voltha-adapters:
114 make -C voltha/adapters/asfvolt16_olt
115
Zsolt Harasztidb892332017-01-09 11:08:38 -0800116chameleon:
alshabib13dd7482017-01-31 16:08:03 -0800117 mkdir tmp.chameleon
118 cp -R chameleon/* tmp.chameleon
Zsolt Harasztidb892332017-01-09 11:08:38 -0800119 docker build -t cord/chameleon -f docker/Dockerfile.chameleon .
alshabib13dd7482017-01-31 16:08:03 -0800120 rm -rf tmp.chameleon
Zsolt Harasztidb892332017-01-09 11:08:38 -0800121
122ofagent:
123 docker build -t cord/ofagent -f docker/Dockerfile.ofagent .
124
125podder:
126 docker build -t cord/podder -f docker/Dockerfile.podder .
127
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400128tools:
129 docker build -t voltha/tools -f docker/Dockerfile.tools .
130
sathishgb5d1c182017-07-13 14:20:19 +0530131fluentd:
132 docker build -t cord/fluentd -f docker/Dockerfile.fluentd .
133
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400134envoy:
135 docker build -t voltha/envoy -f docker/Dockerfile.envoy .
136
Sergio Slobodrianbe829272017-07-17 14:45:45 -0400137envoyd:
Sergio Slobodrian6570c742017-08-07 23:11:33 -0400138 make -C envoy
Sergio Slobodrianbe829272017-07-17 14:45:45 -0400139 make -C envoy/go/envoyd
140
141golang:
142 docker build -t go-builder -f envoy/go/golang-builder/Dockerfile ./envoy/go/golang-builder
143
Zsolt Harasztidb892332017-01-09 11:08:38 -0800144netconf:
145 docker build -t cord/netconf -f docker/Dockerfile.netconf .
146
Stephane Barbarie14088962017-06-01 16:56:55 -0400147netopeer:
148 docker build -t cord/netopeer -f docker/Dockerfile.netopeer .
149
Zsolt Harasztidb892332017-01-09 11:08:38 -0800150shovel:
151 docker build -t cord/shovel -f docker/Dockerfile.shovel .
152
Sergio Slobodrian9358bd42017-03-10 22:52:24 -0500153dashd:
154 docker build -t cord/dashd -f docker/Dockerfile.dashd .
155
Sergio Slobodrianab11c642017-04-24 07:16:58 -0400156vcli:
157 docker build -t cord/vcli -f docker/Dockerfile.cli .
158
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400159portainer:
160 portainer/buildPortainer.sh
161
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400162nginx:
163 docker build -t voltha/nginx -f docker/Dockerfile.nginx .
164
schowdhury40739212017-06-12 07:40:31 -0700165consul:
166 docker build -t voltha/consul -f docker/Dockerfile.consul .
167
168registrator:
169 docker build -t voltha/registrator -f docker/Dockerfile.registrator .
170
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400171grafana:
172 docker build -t voltha/grafana -f docker/Dockerfile.grafana .
173
Zsolt Harasztidb892332017-01-09 11:08:38 -0800174onos:
Zsolt Haraszti9ed54292017-01-09 18:28:32 -0800175 docker build -t cord/onos -f docker/Dockerfile.onos docker
Zsolt Harasztidb892332017-01-09 11:08:38 -0800176
David K. Bainbridge215e0242017-09-05 23:18:24 -0700177unum:
178 docker build -t voltha/unum -f unum/Dockerfile ./unum
179
alshabib5e180572017-01-10 23:59:47 -0600180tester:
alshabibe58f2fd2017-01-11 14:18:13 -0600181 docker build -t cord/tester -f docker/Dockerfile.tester docker
alshabib5e180572017-01-10 23:59:47 -0600182
alshabiba5514082017-03-31 11:08:27 -0500183config-push:
184 docker build -t cord/config-push -f docker/Dockerfile.configpush docker
185
Stephane Barbarie95507c42017-09-19 10:41:04 -0400186opennms:
187 docker build -t cord/opennms -f docker/Dockerfile.opennms .
188
189logstash:
190 docker build -t cord/logstash -f docker/Dockerfile.logstash .
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400191
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700192protos:
193 make -C voltha/protos
194 make -C chameleon/protos
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700195 make -C ofagent/protos
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500196 make -C netconf/protos
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700197
198install-protoc:
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700199 make -C voltha/protos install-protoc
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700200
Zsolt Harasztib71c2a02016-09-12 13:12:07 -0700201clean:
202 find voltha -name '*.pyc' | xargs rm -f
203
Nathan Knutha6b09e32016-09-21 16:26:09 -0700204distclean: clean
205 rm -rf ${VENVDIR}
206
khenaidoofe874ae2017-07-14 18:07:27 -0400207
208fetch-jenkins:
Richard Jankowskicb33c472017-08-24 14:21:59 -0400209 docker pull consul:0.9.2
khenaidoofe874ae2017-07-14 18:07:27 -0400210 docker pull fluent/fluentd:latest
211 docker pull gliderlabs/registrator:master
212 docker pull ubuntu:xenial
213 docker pull wurstmeister/kafka:latest
214 docker pull wurstmeister/zookeeper:latest
215 docker pull zookeeper:latest
216
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700217fetch:
Richard Jankowskicb33c472017-08-24 14:21:59 -0400218 docker pull consul:0.9.2
Zsolt Harasztif2da1d02016-09-13 23:21:35 -0700219 docker pull fluent/fluentd:latest
schowdhurya260f5b2017-06-14 15:54:25 -0700220 docker pull gliderlabs/registrator:master
Zsolt Haraszti0650d1a2016-09-26 17:29:25 -0700221 docker pull ubuntu:xenial
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400222 docker pull wurstmeister/kafka:latest
223 docker pull wurstmeister/zookeeper:latest
Stephane Barbarie7ba064f2017-06-20 10:57:20 -0400224 docker pull zookeeper:latest
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400225 docker pull nginx:latest
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400226 docker pull portainer/portainer:latest
Sergio Slobodrianee417fa2017-08-11 09:34:50 -0400227 docker pull lyft/envoy:29361deae91575a1d46c7a21e913f19e75622ebe
Sergio Slobodriancab0a392017-07-13 08:42:10 -0400228 docker pull registry:2
Sergio Slobodrian6e270c12017-08-09 23:06:49 -0400229 docker pull kamon/grafana_graphite:latest
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700230
231purge-venv:
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700232 rm -fr ${VENVDIR}
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700233
234rebuild-venv: purge-venv venv
235
236venv: ${VENVDIR}/.built
237
238${VENVDIR}/.built:
239 @ virtualenv ${VENVDIR}
240 @ . ${VENVDIR}/bin/activate && \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700241 pip install --upgrade pip; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700242 if ! pip install -r requirements.txt; \
243 then \
244 echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \
245 echo "see the BUILD.md file for a workaround"; \
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700246 else \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700247 uname -s > ${VENVDIR}/.built; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700248 fi
249
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800250test: venv protos run-as-root-tests
251 @ echo "Executing all tests"
252 . ${VENVDIR}/bin/activate && \
253 nosetests -s tests \
254 --exclude-dir=./tests/itests/run_as_root/
255
Zsolt Haraszti66186622016-11-08 14:24:00 -0800256utest: venv protos
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700257 @ echo "Executing all unit tests"
258 . ${VENVDIR}/bin/activate && \
alshabib29a3ed52017-01-23 14:29:21 -0800259 for d in $$(find ./tests/utests -depth -type d); do echo $$d:; nosetests $$d; done
260
261utest-with-coverage: venv protos
262 @ echo "Executing all unit tests and producing coverage results"
263 . ${VENVDIR}/bin/activate && \
264 for d in $$(find ./tests/utests -depth -type d); do echo $$d:; \
265 nosetests --with-xcoverage --with-xunit --cover-package=voltha,common,ofagent,chameleon $$d; done
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400266
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800267itest: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800268 @ echo "Executing all integration tests"
269 . ${VENVDIR}/bin/activate && \
270 nosetests -s \
271 tests/itests/docutests/build_md_test.py \
272 --exclude-dir=./tests/utests/ \
273 --exclude-dir=./tests/itests/run_as_root/
274
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800275smoke-test: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800276 @ echo "Executing smoke tests"
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800277 . ${VENVDIR}/bin/activate && \
278 nosetests -s \
279 tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800280 --exclude-dir=./tests/itests/run_as_root/
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800281
khenaidoo1243ee92017-07-17 15:54:06 -0400282jenkins-test: venv
283 @ echo "Executing jenkins smoke tests"
284 . ${VENVDIR}/bin/activate && \
285 nosetests -s \
286 tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \
287 --exclude-dir=./tests/itests/run_as_root/
288
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800289
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800290run-as-root-tests:
alshabibeef9b132017-02-02 17:46:51 -0800291 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 -0700292
293flake8: $(DIRS_FLAKE8)
Nathan Knuth220a6772016-10-11 08:10:46 -0700294
295# end file