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 | |
Zsolt Haraszti | 9ed5429 | 2017-01-09 18:28:32 -0800 | [diff] [blame] | 25 | .PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 docker-base voltha chameleon ofagent podder netconf shovel onos |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 26 | |
Nathan Knuth | 5157de0 | 2016-09-16 15:20:37 -0700 | [diff] [blame] | 27 | default: build |
| 28 | |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 29 | ## New directories can be added here |
| 30 | DIRS:=\ |
Nathan Knuth | daa1f6e | 2016-09-17 00:17:31 -0700 | [diff] [blame] | 31 | voltha \ |
Nathan Knuth | edc88da | 2016-09-17 00:28:05 -0700 | [diff] [blame] | 32 | voltha/northbound/openflow \ |
| 33 | voltha/northbound/openflow/agent \ |
| 34 | voltha/northbound/openflow/oftest |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 35 | |
| 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 |
| 49 | DIRS_CLEAN = $(addsuffix .clean,$(DIRS)) |
| 50 | $(DIRS_CLEAN): |
| 51 | @echo " CLEAN $(basename $@)" |
| 52 | $(Q)$(MAKE) -C $(basename $@) clean |
| 53 | |
| 54 | # Parallel Flake8 |
| 55 | DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS)) |
| 56 | $(DIRS_FLAKE8): |
| 57 | @echo " FLAKE8 $(basename $@)" |
Nathan Knuth | 950dff2 | 2016-09-17 16:12:34 -0700 | [diff] [blame] | 58 | -$(Q)$(MAKE) -C $(basename $@) flake8 |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 59 | |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 60 | help: |
| 61 | @echo "Usage: make [<target>]" |
| 62 | @echo "where available targets are:" |
| 63 | @echo |
Zsolt Haraszti | 86be6f1 | 2016-09-27 09:56:49 -0700 | [diff] [blame] | 64 | @echo "build : Build the Voltha docker images (default target)" |
Zsolt Haraszti | b71c2a0 | 2016-09-12 13:12:07 -0700 | [diff] [blame] | 65 | @echo "clean : Remove files created by the build and tests" |
Nathan Knuth | a6b09e3 | 2016-09-21 16:26:09 -0700 | [diff] [blame] | 66 | @echo "distclean : Remove venv directory" |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 67 | @echo "fetch : Pre-fetch artifacts for subsequent local builds" |
Nathan Knuth | c0a80c8 | 2016-09-16 15:17:45 -0700 | [diff] [blame] | 68 | @echo "flake8 : Run specifically flake8 tests" |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 69 | @echo "help : Print this help" |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 70 | @echo "protos : Compile all grpc/protobuf files" |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 71 | @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 Nursimulu | 96bb532 | 2016-11-09 20:16:03 -0800 | [diff] [blame] | 74 | @echo "itest : Run all integration tests" |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 75 | @echo |
| 76 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 77 | build: protos containers |
Zsolt Haraszti | 32dda55 | 2016-09-27 09:17:29 -0700 | [diff] [blame] | 78 | |
alshabib | a551408 | 2017-03-31 11:08:27 -0500 | [diff] [blame] | 79 | containers: docker-base voltha chameleon ofagent podder netconf shovel onos tester config-push |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 80 | |
Rouzbahan Rashidi-Tabrizi | 95b68c5 | 2016-11-09 10:17:57 -0800 | [diff] [blame] | 81 | docker-base: |
Zsolt Haraszti | aa4626e | 2016-12-08 16:53:06 -0800 | [diff] [blame] | 82 | docker build -t cord/voltha-base -f docker/Dockerfile.base . |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 83 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 84 | voltha: |
| 85 | docker build -t cord/voltha -f docker/Dockerfile.voltha . |
| 86 | |
| 87 | chameleon: |
alshabib | 13dd748 | 2017-01-31 16:08:03 -0800 | [diff] [blame] | 88 | mkdir tmp.chameleon |
| 89 | cp -R chameleon/* tmp.chameleon |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 90 | docker build -t cord/chameleon -f docker/Dockerfile.chameleon . |
alshabib | 13dd748 | 2017-01-31 16:08:03 -0800 | [diff] [blame] | 91 | rm -rf tmp.chameleon |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 92 | |
| 93 | ofagent: |
| 94 | docker build -t cord/ofagent -f docker/Dockerfile.ofagent . |
| 95 | |
| 96 | podder: |
| 97 | docker build -t cord/podder -f docker/Dockerfile.podder . |
| 98 | |
| 99 | netconf: |
| 100 | docker build -t cord/netconf -f docker/Dockerfile.netconf . |
| 101 | |
| 102 | shovel: |
| 103 | docker build -t cord/shovel -f docker/Dockerfile.shovel . |
| 104 | |
Sergio Slobodrian | 9358bd4 | 2017-03-10 22:52:24 -0500 | [diff] [blame] | 105 | dashd: |
| 106 | docker build -t cord/dashd -f docker/Dockerfile.dashd . |
| 107 | |
Sergio Slobodrian | 00e06ef | 2017-04-24 07:16:58 -0400 | [diff] [blame^] | 108 | vcli: |
| 109 | docker build -t cord/vcli -f docker/Dockerfile.cli . |
| 110 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 111 | onos: |
Zsolt Haraszti | 9ed5429 | 2017-01-09 18:28:32 -0800 | [diff] [blame] | 112 | docker build -t cord/onos -f docker/Dockerfile.onos docker |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 113 | |
alshabib | 5e18057 | 2017-01-10 23:59:47 -0600 | [diff] [blame] | 114 | tester: |
alshabib | e58f2fd | 2017-01-11 14:18:13 -0600 | [diff] [blame] | 115 | docker build -t cord/tester -f docker/Dockerfile.tester docker |
alshabib | 5e18057 | 2017-01-10 23:59:47 -0600 | [diff] [blame] | 116 | |
alshabib | a551408 | 2017-03-31 11:08:27 -0500 | [diff] [blame] | 117 | config-push: |
| 118 | docker build -t cord/config-push -f docker/Dockerfile.configpush docker |
| 119 | |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 120 | protos: |
| 121 | make -C voltha/protos |
| 122 | make -C chameleon/protos |
Zsolt Haraszti | 023ea7c | 2016-10-16 19:30:34 -0700 | [diff] [blame] | 123 | make -C ofagent/protos |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 124 | make -C netconf/protos |
Zsolt Haraszti | a54f2ac | 2016-09-21 15:54:15 -0700 | [diff] [blame] | 125 | |
| 126 | install-protoc: |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 127 | make -C voltha/protos install-protoc |
Zsolt Haraszti | a54f2ac | 2016-09-21 15:54:15 -0700 | [diff] [blame] | 128 | |
Zsolt Haraszti | b71c2a0 | 2016-09-12 13:12:07 -0700 | [diff] [blame] | 129 | clean: |
| 130 | find voltha -name '*.pyc' | xargs rm -f |
| 131 | |
Nathan Knuth | a6b09e3 | 2016-09-21 16:26:09 -0700 | [diff] [blame] | 132 | distclean: clean |
| 133 | rm -rf ${VENVDIR} |
| 134 | |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 135 | fetch: |
Zsolt Haraszti | f2da1d0 | 2016-09-13 23:21:35 -0700 | [diff] [blame] | 136 | docker pull consul:latest |
| 137 | docker pull fluent/fluentd:latest |
| 138 | docker pull gliderlabs/registrator:latest |
Zsolt Haraszti | 0650d1a | 2016-09-26 17:29:25 -0700 | [diff] [blame] | 139 | docker pull ubuntu:xenial |
Khen Nursimulu | 37a9bf8 | 2016-10-16 20:11:31 -0400 | [diff] [blame] | 140 | docker pull wurstmeister/kafka:latest |
| 141 | docker pull wurstmeister/zookeeper:latest |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 142 | |
| 143 | purge-venv: |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 144 | rm -fr ${VENVDIR} |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 145 | |
| 146 | rebuild-venv: purge-venv venv |
| 147 | |
| 148 | venv: ${VENVDIR}/.built |
| 149 | |
| 150 | ${VENVDIR}/.built: |
| 151 | @ virtualenv ${VENVDIR} |
| 152 | @ . ${VENVDIR}/bin/activate && \ |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 153 | pip install --upgrade pip; \ |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 154 | if ! pip install -r requirements.txt; \ |
| 155 | then \ |
| 156 | echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \ |
| 157 | echo "see the BUILD.md file for a workaround"; \ |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 158 | else \ |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 159 | uname -s > ${VENVDIR}/.built; \ |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 160 | fi |
| 161 | |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 162 | test: venv protos run-as-root-tests |
| 163 | @ echo "Executing all tests" |
| 164 | . ${VENVDIR}/bin/activate && \ |
| 165 | nosetests -s tests \ |
| 166 | --exclude-dir=./tests/itests/run_as_root/ |
| 167 | |
Zsolt Haraszti | 6618662 | 2016-11-08 14:24:00 -0800 | [diff] [blame] | 168 | utest: venv protos |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 169 | @ echo "Executing all unit tests" |
| 170 | . ${VENVDIR}/bin/activate && \ |
alshabib | 29a3ed5 | 2017-01-23 14:29:21 -0800 | [diff] [blame] | 171 | for d in $$(find ./tests/utests -depth -type d); do echo $$d:; nosetests $$d; done |
| 172 | |
| 173 | utest-with-coverage: venv protos |
| 174 | @ echo "Executing all unit tests and producing coverage results" |
| 175 | . ${VENVDIR}/bin/activate && \ |
| 176 | for d in $$(find ./tests/utests -depth -type d); do echo $$d:; \ |
| 177 | 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] | 178 | |
Zsolt Haraszti | 348d193 | 2016-12-10 01:10:07 -0800 | [diff] [blame] | 179 | itest: venv run-as-root-tests |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 180 | @ echo "Executing all integration tests" |
| 181 | . ${VENVDIR}/bin/activate && \ |
| 182 | nosetests -s \ |
| 183 | tests/itests/docutests/build_md_test.py \ |
| 184 | --exclude-dir=./tests/utests/ \ |
| 185 | --exclude-dir=./tests/itests/run_as_root/ |
| 186 | |
Zsolt Haraszti | 348d193 | 2016-12-10 01:10:07 -0800 | [diff] [blame] | 187 | smoke-test: venv run-as-root-tests |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 188 | @ echo "Executing smoke tests" |
Khen Nursimulu | 96bb532 | 2016-11-09 20:16:03 -0800 | [diff] [blame] | 189 | . ${VENVDIR}/bin/activate && \ |
| 190 | nosetests -s \ |
| 191 | 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] | 192 | --exclude-dir=./tests/itests/run_as_root/ |
Khen Nursimulu | 96bb532 | 2016-11-09 20:16:03 -0800 | [diff] [blame] | 193 | |
Khen Nursimulu | 96bb532 | 2016-11-09 20:16:03 -0800 | [diff] [blame] | 194 | |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 195 | run-as-root-tests: |
alshabib | eef9b13 | 2017-02-02 17:46:51 -0800 | [diff] [blame] | 196 | 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] | 197 | |
| 198 | flake8: $(DIRS_FLAKE8) |
Nathan Knuth | 220a677 | 2016-10-11 08:10:46 -0700 | [diff] [blame] | 199 | |
| 200 | # end file |