Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 1 | # |
| 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 Knuth | edc88da | 2016-09-17 00:28:05 -0700 | [diff] [blame] | 17 | ifeq ($(VOLTHA_BASE)_set,_set) |
| 18 | $(error To get started, please source the env.sh file) |
| 19 | endif |
| 20 | |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 21 | include setup.mk |
| 22 | |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 23 | VENVDIR := venv-$(shell uname -s | tr '[:upper:]' '[:lower:]') |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 24 | |
Sergio Slobodrian | b2df177 | 2017-04-26 10:03:57 -0400 | [diff] [blame] | 25 | .PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 docker-base voltha chameleon ofagent podder netconf shovel onos dashd vcli portainer grafana nginx |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 26 | |
ggowdru | 9974f21 | 2017-06-06 23:31:25 -0700 | [diff] [blame] | 27 | # This should to be the first and default target in this Makefile |
| 28 | help: |
| 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" |
| 58 | @echo |
Nathan Knuth | 5157de0 | 2016-09-16 15:20:37 -0700 | [diff] [blame] | 59 | |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 60 | ## New directories can be added here |
| 61 | DIRS:=\ |
Nathan Knuth | daa1f6e | 2016-09-17 00:17:31 -0700 | [diff] [blame] | 62 | voltha \ |
Nathan Knuth | edc88da | 2016-09-17 00:28:05 -0700 | [diff] [blame] | 63 | voltha/northbound/openflow \ |
| 64 | voltha/northbound/openflow/agent \ |
| 65 | voltha/northbound/openflow/oftest |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 66 | |
| 67 | ## If one directory depends on another directory that |
| 68 | ## dependency can be expressed here |
| 69 | ## |
| 70 | ## For example, if the Tibit directory depended on the eoam |
| 71 | ## directory being built first, then that can be expressed here. |
| 72 | ## driver/tibit: eoam |
| 73 | |
| 74 | # Parallel Build |
| 75 | $(DIRS): |
| 76 | @echo " MK $@" |
| 77 | $(Q)$(MAKE) -C $@ |
| 78 | |
| 79 | # Parallel Clean |
| 80 | DIRS_CLEAN = $(addsuffix .clean,$(DIRS)) |
| 81 | $(DIRS_CLEAN): |
| 82 | @echo " CLEAN $(basename $@)" |
| 83 | $(Q)$(MAKE) -C $(basename $@) clean |
| 84 | |
| 85 | # Parallel Flake8 |
| 86 | DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS)) |
| 87 | $(DIRS_FLAKE8): |
| 88 | @echo " FLAKE8 $(basename $@)" |
Nathan Knuth | 950dff2 | 2016-09-17 16:12:34 -0700 | [diff] [blame] | 89 | -$(Q)$(MAKE) -C $(basename $@) flake8 |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 90 | |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 91 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 92 | build: protos containers |
Zsolt Haraszti | 32dda55 | 2016-09-27 09:17:29 -0700 | [diff] [blame] | 93 | |
Sergio Slobodrian | b2df177 | 2017-04-26 10:03:57 -0400 | [diff] [blame] | 94 | containers: docker-base voltha chameleon ofagent podder netconf shovel onos tester config-push dashd vcli portainer grafana nginx |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 95 | |
Rouzbahan Rashidi-Tabrizi | 95b68c5 | 2016-11-09 10:17:57 -0800 | [diff] [blame] | 96 | docker-base: |
Zsolt Haraszti | aa4626e | 2016-12-08 16:53:06 -0800 | [diff] [blame] | 97 | docker build -t cord/voltha-base -f docker/Dockerfile.base . |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 98 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 99 | voltha: |
| 100 | docker build -t cord/voltha -f docker/Dockerfile.voltha . |
| 101 | |
| 102 | chameleon: |
alshabib | 13dd748 | 2017-01-31 16:08:03 -0800 | [diff] [blame] | 103 | mkdir tmp.chameleon |
| 104 | cp -R chameleon/* tmp.chameleon |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 105 | docker build -t cord/chameleon -f docker/Dockerfile.chameleon . |
alshabib | 13dd748 | 2017-01-31 16:08:03 -0800 | [diff] [blame] | 106 | rm -rf tmp.chameleon |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 107 | |
| 108 | ofagent: |
| 109 | docker build -t cord/ofagent -f docker/Dockerfile.ofagent . |
| 110 | |
| 111 | podder: |
| 112 | docker build -t cord/podder -f docker/Dockerfile.podder . |
| 113 | |
| 114 | netconf: |
| 115 | docker build -t cord/netconf -f docker/Dockerfile.netconf . |
| 116 | |
Stephane Barbarie | 1408896 | 2017-06-01 16:56:55 -0400 | [diff] [blame] | 117 | netopeer: |
| 118 | docker build -t cord/netopeer -f docker/Dockerfile.netopeer . |
| 119 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 120 | shovel: |
| 121 | docker build -t cord/shovel -f docker/Dockerfile.shovel . |
| 122 | |
Sergio Slobodrian | 9358bd4 | 2017-03-10 22:52:24 -0500 | [diff] [blame] | 123 | dashd: |
| 124 | docker build -t cord/dashd -f docker/Dockerfile.dashd . |
| 125 | |
Sergio Slobodrian | ab11c64 | 2017-04-24 07:16:58 -0400 | [diff] [blame] | 126 | vcli: |
| 127 | docker build -t cord/vcli -f docker/Dockerfile.cli . |
| 128 | |
Sergio Slobodrian | 4d30710 | 2017-04-24 10:19:00 -0400 | [diff] [blame] | 129 | portainer: |
| 130 | portainer/buildPortainer.sh |
| 131 | |
Sergio Slobodrian | ff52e1b | 2017-04-24 12:39:08 -0400 | [diff] [blame] | 132 | nginx: |
| 133 | docker build -t voltha/nginx -f docker/Dockerfile.nginx . |
| 134 | |
| 135 | grafana: |
| 136 | docker build -t voltha/grafana -f docker/Dockerfile.grafana . |
| 137 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 138 | onos: |
Zsolt Haraszti | 9ed5429 | 2017-01-09 18:28:32 -0800 | [diff] [blame] | 139 | docker build -t cord/onos -f docker/Dockerfile.onos docker |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 140 | |
alshabib | 5e18057 | 2017-01-10 23:59:47 -0600 | [diff] [blame] | 141 | tester: |
alshabib | e58f2fd | 2017-01-11 14:18:13 -0600 | [diff] [blame] | 142 | docker build -t cord/tester -f docker/Dockerfile.tester docker |
alshabib | 5e18057 | 2017-01-10 23:59:47 -0600 | [diff] [blame] | 143 | |
alshabib | a551408 | 2017-03-31 11:08:27 -0500 | [diff] [blame] | 144 | config-push: |
| 145 | docker build -t cord/config-push -f docker/Dockerfile.configpush docker |
| 146 | |
Sergio Slobodrian | ff52e1b | 2017-04-24 12:39:08 -0400 | [diff] [blame] | 147 | |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 148 | protos: |
| 149 | make -C voltha/protos |
| 150 | make -C chameleon/protos |
Zsolt Haraszti | 023ea7c | 2016-10-16 19:30:34 -0700 | [diff] [blame] | 151 | make -C ofagent/protos |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 152 | make -C netconf/protos |
Zsolt Haraszti | a54f2ac | 2016-09-21 15:54:15 -0700 | [diff] [blame] | 153 | |
| 154 | install-protoc: |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 155 | make -C voltha/protos install-protoc |
Zsolt Haraszti | a54f2ac | 2016-09-21 15:54:15 -0700 | [diff] [blame] | 156 | |
Zsolt Haraszti | b71c2a0 | 2016-09-12 13:12:07 -0700 | [diff] [blame] | 157 | clean: |
| 158 | find voltha -name '*.pyc' | xargs rm -f |
| 159 | |
Nathan Knuth | a6b09e3 | 2016-09-21 16:26:09 -0700 | [diff] [blame] | 160 | distclean: clean |
| 161 | rm -rf ${VENVDIR} |
| 162 | |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 163 | fetch: |
Zsolt Haraszti | f2da1d0 | 2016-09-13 23:21:35 -0700 | [diff] [blame] | 164 | docker pull consul:latest |
| 165 | docker pull fluent/fluentd:latest |
| 166 | docker pull gliderlabs/registrator:latest |
Zsolt Haraszti | 0650d1a | 2016-09-26 17:29:25 -0700 | [diff] [blame] | 167 | docker pull ubuntu:xenial |
Khen Nursimulu | 37a9bf8 | 2016-10-16 20:11:31 -0400 | [diff] [blame] | 168 | docker pull wurstmeister/kafka:latest |
| 169 | docker pull wurstmeister/zookeeper:latest |
Sergio Slobodrian | ff52e1b | 2017-04-24 12:39:08 -0400 | [diff] [blame] | 170 | docker pull nginx:latest |
Sergio Slobodrian | 4d30710 | 2017-04-24 10:19:00 -0400 | [diff] [blame] | 171 | docker pull portainer/portainer:latest |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 172 | |
| 173 | purge-venv: |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 174 | rm -fr ${VENVDIR} |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 175 | |
| 176 | rebuild-venv: purge-venv venv |
| 177 | |
| 178 | venv: ${VENVDIR}/.built |
| 179 | |
| 180 | ${VENVDIR}/.built: |
| 181 | @ virtualenv ${VENVDIR} |
| 182 | @ . ${VENVDIR}/bin/activate && \ |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 183 | pip install --upgrade pip; \ |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 184 | if ! pip install -r requirements.txt; \ |
| 185 | then \ |
| 186 | echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \ |
| 187 | echo "see the BUILD.md file for a workaround"; \ |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 188 | else \ |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 189 | uname -s > ${VENVDIR}/.built; \ |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 190 | fi |
| 191 | |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 192 | test: venv protos run-as-root-tests |
| 193 | @ echo "Executing all tests" |
| 194 | . ${VENVDIR}/bin/activate && \ |
| 195 | nosetests -s tests \ |
| 196 | --exclude-dir=./tests/itests/run_as_root/ |
| 197 | |
Zsolt Haraszti | 6618662 | 2016-11-08 14:24:00 -0800 | [diff] [blame] | 198 | utest: venv protos |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 199 | @ echo "Executing all unit tests" |
| 200 | . ${VENVDIR}/bin/activate && \ |
alshabib | 29a3ed5 | 2017-01-23 14:29:21 -0800 | [diff] [blame] | 201 | for d in $$(find ./tests/utests -depth -type d); do echo $$d:; nosetests $$d; done |
| 202 | |
| 203 | utest-with-coverage: venv protos |
| 204 | @ echo "Executing all unit tests and producing coverage results" |
| 205 | . ${VENVDIR}/bin/activate && \ |
| 206 | for d in $$(find ./tests/utests -depth -type d); do echo $$d:; \ |
| 207 | nosetests --with-xcoverage --with-xunit --cover-package=voltha,common,ofagent,chameleon $$d; done |
Khen Nursimulu | 37a9bf8 | 2016-10-16 20:11:31 -0400 | [diff] [blame] | 208 | |
Zsolt Haraszti | 348d193 | 2016-12-10 01:10:07 -0800 | [diff] [blame] | 209 | itest: venv run-as-root-tests |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 210 | @ echo "Executing all integration tests" |
| 211 | . ${VENVDIR}/bin/activate && \ |
| 212 | nosetests -s \ |
| 213 | tests/itests/docutests/build_md_test.py \ |
| 214 | --exclude-dir=./tests/utests/ \ |
| 215 | --exclude-dir=./tests/itests/run_as_root/ |
| 216 | |
Zsolt Haraszti | 348d193 | 2016-12-10 01:10:07 -0800 | [diff] [blame] | 217 | smoke-test: venv run-as-root-tests |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 218 | @ echo "Executing smoke tests" |
Khen Nursimulu | 96bb532 | 2016-11-09 20:16:03 -0800 | [diff] [blame] | 219 | . ${VENVDIR}/bin/activate && \ |
| 220 | nosetests -s \ |
| 221 | tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \ |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 222 | --exclude-dir=./tests/itests/run_as_root/ |
Khen Nursimulu | 96bb532 | 2016-11-09 20:16:03 -0800 | [diff] [blame] | 223 | |
Khen Nursimulu | 96bb532 | 2016-11-09 20:16:03 -0800 | [diff] [blame] | 224 | |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 225 | run-as-root-tests: |
alshabib | eef9b13 | 2017-02-02 17:46:51 -0800 | [diff] [blame] | 226 | 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 Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 227 | |
| 228 | flake8: $(DIRS_FLAKE8) |
Nathan Knuth | 220a677 | 2016-10-11 08:10:46 -0700 | [diff] [blame] | 229 | |
| 230 | # end file |