blob: a893794c3773eb0da151cf245d8c2e2325470cfd [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 Slobodrian4d307102017-04-24 10:19:00 -040025.PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 docker-base voltha chameleon ofagent podder netconf shovel onos dashd vcli portainer
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070026
Nathan Knuth5157de02016-09-16 15:20:37 -070027default: build
28
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070029## New directories can be added here
30DIRS:=\
Nathan Knuthdaa1f6e2016-09-17 00:17:31 -070031voltha \
Nathan Knuthedc88da2016-09-17 00:28:05 -070032voltha/northbound/openflow \
33voltha/northbound/openflow/agent \
34voltha/northbound/openflow/oftest
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070035
36## If one directory depends on another directory that
37## dependency can be expressed here
38##
39## For example, if the Tibit directory depended on the eoam
40## directory being built first, then that can be expressed here.
41## driver/tibit: eoam
42
43# Parallel Build
44$(DIRS):
45 @echo " MK $@"
46 $(Q)$(MAKE) -C $@
47
48# Parallel Clean
49DIRS_CLEAN = $(addsuffix .clean,$(DIRS))
50$(DIRS_CLEAN):
51 @echo " CLEAN $(basename $@)"
52 $(Q)$(MAKE) -C $(basename $@) clean
53
54# Parallel Flake8
55DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS))
56$(DIRS_FLAKE8):
57 @echo " FLAKE8 $(basename $@)"
Nathan Knuth950dff22016-09-17 16:12:34 -070058 -$(Q)$(MAKE) -C $(basename $@) flake8
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070059
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070060help:
61 @echo "Usage: make [<target>]"
62 @echo "where available targets are:"
63 @echo
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070064 @echo "build : Build the Voltha docker images (default target)"
Zsolt Harasztib71c2a02016-09-12 13:12:07 -070065 @echo "clean : Remove files created by the build and tests"
Nathan Knutha6b09e32016-09-21 16:26:09 -070066 @echo "distclean : Remove venv directory"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070067 @echo "fetch : Pre-fetch artifacts for subsequent local builds"
Nathan Knuthc0a80c82016-09-16 15:17:45 -070068 @echo "flake8 : Run specifically flake8 tests"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070069 @echo "help : Print this help"
Zsolt Haraszti5cd64702016-09-27 13:48:35 -070070 @echo "protos : Compile all grpc/protobuf files"
Zsolt Haraszti51af3392016-09-10 22:18:45 -070071 @echo "rebuild-venv : Rebuild local Python virtualenv from scratch"
72 @echo "venv : Build local Python virtualenv if did not exist yet"
73 @echo "utest : Run all unit tests"
Khen Nursimulu96bb5322016-11-09 20:16:03 -080074 @echo "itest : Run all integration tests"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070075 @echo
76
Zsolt Harasztidb892332017-01-09 11:08:38 -080077build: protos containers
Zsolt Haraszti32dda552016-09-27 09:17:29 -070078
Sergio Slobodrian4d307102017-04-24 10:19:00 -040079containers: docker-base voltha chameleon ofagent podder netconf shovel onos tester config-push dashd vcli portainer
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050080
Rouzbahan Rashidi-Tabrizi95b68c52016-11-09 10:17:57 -080081docker-base:
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -080082 docker build -t cord/voltha-base -f docker/Dockerfile.base .
Zsolt Haraszti51af3392016-09-10 22:18:45 -070083
Zsolt Harasztidb892332017-01-09 11:08:38 -080084voltha:
85 docker build -t cord/voltha -f docker/Dockerfile.voltha .
86
87chameleon:
alshabib13dd7482017-01-31 16:08:03 -080088 mkdir tmp.chameleon
89 cp -R chameleon/* tmp.chameleon
Zsolt Harasztidb892332017-01-09 11:08:38 -080090 docker build -t cord/chameleon -f docker/Dockerfile.chameleon .
alshabib13dd7482017-01-31 16:08:03 -080091 rm -rf tmp.chameleon
Zsolt Harasztidb892332017-01-09 11:08:38 -080092
93ofagent:
94 docker build -t cord/ofagent -f docker/Dockerfile.ofagent .
95
96podder:
97 docker build -t cord/podder -f docker/Dockerfile.podder .
98
99netconf:
100 docker build -t cord/netconf -f docker/Dockerfile.netconf .
101
102shovel:
103 docker build -t cord/shovel -f docker/Dockerfile.shovel .
104
Sergio Slobodrian9358bd42017-03-10 22:52:24 -0500105dashd:
106 docker build -t cord/dashd -f docker/Dockerfile.dashd .
107
Sergio Slobodrianab11c642017-04-24 07:16:58 -0400108vcli:
109 docker build -t cord/vcli -f docker/Dockerfile.cli .
110
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400111portainer:
112 portainer/buildPortainer.sh
113
Zsolt Harasztidb892332017-01-09 11:08:38 -0800114onos:
Zsolt Haraszti9ed54292017-01-09 18:28:32 -0800115 docker build -t cord/onos -f docker/Dockerfile.onos docker
Zsolt Harasztidb892332017-01-09 11:08:38 -0800116
alshabib5e180572017-01-10 23:59:47 -0600117tester:
alshabibe58f2fd2017-01-11 14:18:13 -0600118 docker build -t cord/tester -f docker/Dockerfile.tester docker
alshabib5e180572017-01-10 23:59:47 -0600119
alshabiba5514082017-03-31 11:08:27 -0500120config-push:
121 docker build -t cord/config-push -f docker/Dockerfile.configpush docker
122
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700123protos:
124 make -C voltha/protos
125 make -C chameleon/protos
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -0700126 make -C ofagent/protos
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500127 make -C netconf/protos
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700128
129install-protoc:
Zsolt Haraszti5cd64702016-09-27 13:48:35 -0700130 make -C voltha/protos install-protoc
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -0700131
Zsolt Harasztib71c2a02016-09-12 13:12:07 -0700132clean:
133 find voltha -name '*.pyc' | xargs rm -f
134
Nathan Knutha6b09e32016-09-21 16:26:09 -0700135distclean: clean
136 rm -rf ${VENVDIR}
137
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700138fetch:
Zsolt Harasztif2da1d02016-09-13 23:21:35 -0700139 docker pull consul:latest
140 docker pull fluent/fluentd:latest
141 docker pull gliderlabs/registrator:latest
Zsolt Haraszti0650d1a2016-09-26 17:29:25 -0700142 docker pull ubuntu:xenial
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400143 docker pull wurstmeister/kafka:latest
144 docker pull wurstmeister/zookeeper:latest
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400145 docker pull portainer/portainer:latest
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700146
147purge-venv:
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700148 rm -fr ${VENVDIR}
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700149
150rebuild-venv: purge-venv venv
151
152venv: ${VENVDIR}/.built
153
154${VENVDIR}/.built:
155 @ virtualenv ${VENVDIR}
156 @ . ${VENVDIR}/bin/activate && \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700157 pip install --upgrade pip; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700158 if ! pip install -r requirements.txt; \
159 then \
160 echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \
161 echo "see the BUILD.md file for a workaround"; \
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700162 else \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700163 uname -s > ${VENVDIR}/.built; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700164 fi
165
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800166test: venv protos run-as-root-tests
167 @ echo "Executing all tests"
168 . ${VENVDIR}/bin/activate && \
169 nosetests -s tests \
170 --exclude-dir=./tests/itests/run_as_root/
171
Zsolt Haraszti66186622016-11-08 14:24:00 -0800172utest: venv protos
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700173 @ echo "Executing all unit tests"
174 . ${VENVDIR}/bin/activate && \
alshabib29a3ed52017-01-23 14:29:21 -0800175 for d in $$(find ./tests/utests -depth -type d); do echo $$d:; nosetests $$d; done
176
177utest-with-coverage: venv protos
178 @ echo "Executing all unit tests and producing coverage results"
179 . ${VENVDIR}/bin/activate && \
180 for d in $$(find ./tests/utests -depth -type d); do echo $$d:; \
181 nosetests --with-xcoverage --with-xunit --cover-package=voltha,common,ofagent,chameleon $$d; done
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400182
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800183itest: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800184 @ echo "Executing all integration tests"
185 . ${VENVDIR}/bin/activate && \
186 nosetests -s \
187 tests/itests/docutests/build_md_test.py \
188 --exclude-dir=./tests/utests/ \
189 --exclude-dir=./tests/itests/run_as_root/
190
Zsolt Haraszti348d1932016-12-10 01:10:07 -0800191smoke-test: venv run-as-root-tests
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800192 @ echo "Executing smoke tests"
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800193 . ${VENVDIR}/bin/activate && \
194 nosetests -s \
195 tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800196 --exclude-dir=./tests/itests/run_as_root/
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800197
Khen Nursimulu96bb5322016-11-09 20:16:03 -0800198
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -0800199run-as-root-tests:
alshabibeef9b132017-02-02 17:46:51 -0800200 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 -0700201
202flake8: $(DIRS_FLAKE8)
Nathan Knuth220a6772016-10-11 08:10:46 -0700203
204# end file