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 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 17 | ifneq ($(VOLTHA_BUILD),docker) |
Nathan Knuth | edc88da | 2016-09-17 00:28:05 -0700 | [diff] [blame] | 18 | ifeq ($(VOLTHA_BASE)_set,_set) |
| 19 | $(error To get started, please source the env.sh file) |
| 20 | endif |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 21 | endif |
Nathan Knuth | edc88da | 2016-09-17 00:28:05 -0700 | [diff] [blame] | 22 | |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 23 | ifeq ($(TAG),) |
| 24 | TAG := latest |
| 25 | endif |
| 26 | |
David K. Bainbridge | 52c25df | 2018-01-19 16:41:38 -0800 | [diff] [blame] | 27 | ifeq ($(TARGET_TAG),) |
| 28 | TARGET_TAG := latest |
| 29 | endif |
| 30 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 31 | # If no DOCKER_HOST_IP is specified grab a v4 IP address associated with |
| 32 | # the default gateway |
| 33 | ifeq ($(DOCKER_HOST_IP),) |
| 34 | DOCKER_HOST_IP := $(shell ifconfig $$(netstat -rn | grep -E '^(default|0.0.0.0)' | head -1 | awk '{print $$NF}') | grep inet | awk '{print $$2}' | sed -e 's/addr://g') |
| 35 | endif |
| 36 | |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 37 | include setup.mk |
| 38 | |
Gertjan Van Droogenbroeck | cb3507d | 2017-11-16 16:54:22 +0100 | [diff] [blame] | 39 | ifneq ($(http_proxy)$(https_proxy),) |
| 40 | # Include proxies from the environment |
| 41 | DOCKER_PROXY_ARGS = \ |
| 42 | --build-arg http_proxy=$(http_proxy) \ |
| 43 | --build-arg https_proxy=$(https_proxy) \ |
| 44 | --build-arg ftp_proxy=$(ftp_proxy) \ |
| 45 | --build-arg no_proxy=$(no_proxy) \ |
| 46 | --build-arg HTTP_PROXY=$(HTTP_PROXY) \ |
| 47 | --build-arg HTTPS_PROXY=$(HTTPS_PROXY) \ |
| 48 | --build-arg FTP_PROXY=$(FTP_PROXY) \ |
| 49 | --build-arg NO_PROXY=$(NO_PROXY) |
| 50 | endif |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 51 | |
| 52 | DOCKER_BUILD_ARGS = \ |
| 53 | --build-arg TAG=$(TAG) \ |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 54 | --build-arg REGISTRY=$(REGISTRY) \ |
| 55 | --build-arg REPOSITORY=$(REPOSITORY) \ |
| 56 | $(DOCKER_PROXY_ARGS) $(DOCKER_CACHE_ARG) \ |
| 57 | --rm --force-rm \ |
| 58 | $(DOCKER_BUILD_EXTRA_ARGS) |
Gertjan Van Droogenbroeck | cb3507d | 2017-11-16 16:54:22 +0100 | [diff] [blame] | 59 | |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 60 | VENVDIR := venv-$(shell uname -s | tr '[:upper:]' '[:lower:]') |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 61 | |
David K. Bainbridge | 52c25df | 2018-01-19 16:41:38 -0800 | [diff] [blame] | 62 | DOCKER_IMAGE_LIST = \ |
| 63 | base \ |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 64 | protoc \ |
| 65 | protos \ |
David K. Bainbridge | 52c25df | 2018-01-19 16:41:38 -0800 | [diff] [blame] | 66 | voltha \ |
| 67 | ofagent \ |
| 68 | tools \ |
| 69 | fluentd \ |
| 70 | envoy \ |
| 71 | go-builder \ |
| 72 | netconf \ |
| 73 | shovel \ |
| 74 | dashd \ |
| 75 | cli \ |
| 76 | portainer \ |
| 77 | nginx \ |
| 78 | consul \ |
| 79 | grafana \ |
| 80 | onos \ |
| 81 | unum \ |
| 82 | tester \ |
| 83 | config-push \ |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 84 | j2 \ |
| 85 | test_runner |
David K. Bainbridge | 52c25df | 2018-01-19 16:41:38 -0800 | [diff] [blame] | 86 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 87 | # The following list was scavanged from the compose / stack files as well as |
| 88 | # from the Dockerfiles. If nothing else it highlights that VOLTHA is not |
| 89 | # using consistent versions for some of the containers. |
| 90 | |
| 91 | # grep -i "^FROM" docker/Dockerfile.* | grep -v voltha- | sed -e 's/ as .*$//g' -e 's/\${REGISTRY}//g' | awk '{print $NF}' | grep -v '^scratch' | sed '/:.*$/!s/$/:latest/g' | sort -u | sed -e 's/^/ /g' -e 's/$/ \\/g' |
| 92 | FETCH_BUILD_IMAGE_LIST = \ |
| 93 | alpine:3.6 \ |
| 94 | centos:7 \ |
| 95 | centurylink/ca-certs:latest \ |
| 96 | consul:0.9.2 \ |
| 97 | debian:stretch-slim \ |
| 98 | docker.elastic.co/logstash/logstash:5.6.0 \ |
| 99 | fluent/fluentd:v0.12.42 \ |
| 100 | gliderlabs/registrator:v7 \ |
| 101 | golang:1.9.2 \ |
| 102 | grpc/python:latest \ |
| 103 | kamon/grafana_graphite:3.0 \ |
| 104 | lyft/envoy:29361deae91575a1d46c7a21e913f19e75622ebe \ |
| 105 | maven:3-jdk-8-alpine \ |
| 106 | onosproject/onos:1.10.9 \ |
| 107 | opennms/horizon-core-web:19.0.1-1 \ |
| 108 | portainer/portainer:1.15.2 \ |
| 109 | ubuntu:xenial |
| 110 | |
| 111 | # find compose -type f | xargs grep image: | awk '{print $NF}' | grep -v voltha- | sed -e 's/\"//g' -e 's/\${REGISTRY}//g' -e 's/:\${.*:-/:/g' -e 's/\}//g' -e '/:.*$/!s/$/:latest/g' | sort -u | sed -e 's/^/ /g' -e 's/$/ \\/g' |
| 112 | FETCH_COMPOSE_IMAGE_LIST = \ |
| 113 | consul:0.9.2 \ |
| 114 | docker.elastic.co/elasticsearch/elasticsearch:5.6.0 \ |
| 115 | fluent/fluentd:latest \ |
| 116 | fluent/fluentd:v0.12.42 \ |
| 117 | gliderlabs/registrator:latest \ |
| 118 | kamon/grafana_graphite:latest \ |
| 119 | marcelmaatkamp/freeradius:latest \ |
| 120 | postgres:9.6.1 \ |
| 121 | quay.io/coreos/etcd:v3.2.9 \ |
| 122 | registry:2 \ |
| 123 | tianon/true:latest \ |
| 124 | wurstmeister/kafka:latest \ |
| 125 | wurstmeister/zookeeper:latest |
| 126 | |
| 127 | # find k8s -type f | xargs grep image: | awk '{print $NF}' | sed -e 's/\"//g' | sed '/:.*$/!s/$/:latest/g' | sort -u | sed -e 's/^/ /g' -e 's/$/ \\/g' |
| 128 | # Manually remove some image from this list as they don't reflect the new |
| 129 | # naming conventions for the VOLTHA build |
| 130 | FETCH_K8S_IMAGE_LIST = \ |
| 131 | consul:0.9.2 \ |
| 132 | quay.io/coreos/etcd-operator:v0.7.2 \ |
| 133 | wurstmeister/kafka:1.0.0 \ |
| 134 | zookeeper:3.4.11 |
| 135 | |
| 136 | FETCH_IMAGE_LIST = $(shell echo $(FETCH_BUILD_IMAGE_LIST) $(FETCH_COMPOSE_IMAGE_LIST) $(FETCH_K8S_IMAGE_LIST) | tr ' ' '\n' | sort -u) |
| 137 | |
| 138 | .PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 base voltha ofagent netconf shovel onos dashd cli portainer grafana nginx consul envoy go-builder envoyd tools opennms logstash unum start stop tag push pull |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 139 | |
ggowdru | 9974f21 | 2017-06-06 23:31:25 -0700 | [diff] [blame] | 140 | # This should to be the first and default target in this Makefile |
| 141 | help: |
| 142 | @echo "Usage: make [<target>]" |
| 143 | @echo "where available targets are:" |
| 144 | @echo |
| 145 | @echo "build : Build the Voltha protos and docker images.\n\ |
| 146 | If this is the first time you are building, choose \"make build\" option." |
Sergio Slobodrian | 7a7091c | 2017-06-21 23:45:45 -0400 | [diff] [blame] | 147 | @echo "production : Build voltha for production deployment" |
ggowdru | 9974f21 | 2017-06-06 23:31:25 -0700 | [diff] [blame] | 148 | @echo "clean : Remove files created by the build and tests" |
| 149 | @echo "distclean : Remove venv directory" |
| 150 | @echo "fetch : Pre-fetch artifacts for subsequent local builds" |
| 151 | @echo "flake8 : Run specifically flake8 tests" |
| 152 | @echo "help : Print this help" |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 153 | @echo "protoc : Build a container with protoc installed" |
ggowdru | 9974f21 | 2017-06-06 23:31:25 -0700 | [diff] [blame] | 154 | @echo "protos : Compile all grpc/protobuf files" |
| 155 | @echo "rebuild-venv : Rebuild local Python virtualenv from scratch" |
| 156 | @echo "venv : Build local Python virtualenv if did not exist yet" |
| 157 | @echo "utest : Run all unit tests" |
| 158 | @echo "itest : Run all integration tests" |
| 159 | @echo "containers : Build all the docker containers" |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 160 | @echo "base : Build the base docker container used by all other dockers" |
ggowdru | 9974f21 | 2017-06-06 23:31:25 -0700 | [diff] [blame] | 161 | @echo "voltha : Build the voltha docker container" |
ggowdru | 9974f21 | 2017-06-06 23:31:25 -0700 | [diff] [blame] | 162 | @echo "ofagent : Build the ofagent docker container" |
ggowdru | 9974f21 | 2017-06-06 23:31:25 -0700 | [diff] [blame] | 163 | @echo "netconf : Build the netconf docker container" |
| 164 | @echo "shovel : Build the shovel docker container" |
| 165 | @echo "onos : Build the onos docker container" |
| 166 | @echo "dashd : Build the dashd docker container" |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 167 | @echo "cli : Build the cli docker container" |
ggowdru | 9974f21 | 2017-06-06 23:31:25 -0700 | [diff] [blame] | 168 | @echo "portainer : Build the portainer docker container" |
| 169 | @echo "grafana : Build the grafana docker container" |
| 170 | @echo "nginx : Build the nginx docker container" |
schowdhury | 4073921 | 2017-06-12 07:40:31 -0700 | [diff] [blame] | 171 | @echo "consul : Build the consul docker container" |
David K. Bainbridge | 215e024 | 2017-09-05 23:18:24 -0700 | [diff] [blame] | 172 | @echo "unum : Build the unum docker container" |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 173 | @echo "j2 : Build the Jinja2 template container" |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 174 | @echo "test_runner : Build a container from which tests are run" |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 175 | @echo "start : Start VOLTHA on the current system" |
| 176 | @echo "stop : Stop VOLTHA on the current system" |
David K. Bainbridge | 52c25df | 2018-01-19 16:41:38 -0800 | [diff] [blame] | 177 | @echo "tag : Tag a set of images" |
| 178 | @echo "push : Push the docker images to an external repository" |
| 179 | @echo "pull : Pull the docker images from a repository" |
ggowdru | 9974f21 | 2017-06-06 23:31:25 -0700 | [diff] [blame] | 180 | @echo |
Nathan Knuth | 5157de0 | 2016-09-16 15:20:37 -0700 | [diff] [blame] | 181 | |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 182 | ## New directories can be added here |
| 183 | DIRS:=\ |
Nathan Knuth | edc88da | 2016-09-17 00:28:05 -0700 | [diff] [blame] | 184 | voltha/northbound/openflow \ |
| 185 | voltha/northbound/openflow/agent \ |
| 186 | voltha/northbound/openflow/oftest |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 187 | |
| 188 | ## If one directory depends on another directory that |
| 189 | ## dependency can be expressed here |
| 190 | ## |
| 191 | ## For example, if the Tibit directory depended on the eoam |
| 192 | ## directory being built first, then that can be expressed here. |
| 193 | ## driver/tibit: eoam |
| 194 | |
| 195 | # Parallel Build |
| 196 | $(DIRS): |
| 197 | @echo " MK $@" |
| 198 | $(Q)$(MAKE) -C $@ |
| 199 | |
| 200 | # Parallel Clean |
| 201 | DIRS_CLEAN = $(addsuffix .clean,$(DIRS)) |
| 202 | $(DIRS_CLEAN): |
| 203 | @echo " CLEAN $(basename $@)" |
| 204 | $(Q)$(MAKE) -C $(basename $@) clean |
| 205 | |
| 206 | # Parallel Flake8 |
| 207 | DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS)) |
| 208 | $(DIRS_FLAKE8): |
| 209 | @echo " FLAKE8 $(basename $@)" |
Nathan Knuth | 950dff2 | 2016-09-17 16:12:34 -0700 | [diff] [blame] | 210 | -$(Q)$(MAKE) -C $(basename $@) flake8 |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 211 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 212 | build: protoc protos go-builder containers |
Zsolt Haraszti | 32dda55 | 2016-09-27 09:17:29 -0700 | [diff] [blame] | 213 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 214 | production: protoc protos go-builder prod-containers |
Sergio Slobodrian | 7a7091c | 2017-06-21 23:45:45 -0400 | [diff] [blame] | 215 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 216 | jenkins: build |
khenaidoo | fe874ae | 2017-07-14 18:07:27 -0400 | [diff] [blame] | 217 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 218 | jenkins-containers: base voltha ofagent netconf consul cli envoy fluentd unum j2 |
Sergio Slobodrian | 7a7091c | 2017-06-21 23:45:45 -0400 | [diff] [blame] | 219 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 220 | prod-containers: base voltha ofagent netconf shovel onos dashd cli grafana consul tools envoy fluentd unum j2 |
Sergio Slobodrian | 7a7091c | 2017-06-21 23:45:45 -0400 | [diff] [blame] | 221 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 222 | containers: base voltha ofagent netconf shovel onos tester config-push dashd cli portainer grafana nginx consul tools envoy fluentd unum j2 test_runner |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 223 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 224 | base: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 225 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-base:${TAG} -f docker/Dockerfile.base . |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 226 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 227 | ifneq ($(VOLTHA_BUILD),docker) |
Shad Ansari | 83777cb | 2017-06-02 14:56:08 -0700 | [diff] [blame] | 228 | voltha: voltha-adapters |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 229 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-voltha:${TAG} -f docker/Dockerfile.voltha . |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 230 | else |
| 231 | voltha: |
| 232 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-voltha:${TAG} -f docker/Dockerfile.voltha_d . |
| 233 | endif |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 234 | |
Shad Ansari | 83777cb | 2017-06-02 14:56:08 -0700 | [diff] [blame] | 235 | voltha-adapters: |
| 236 | make -C voltha/adapters/asfvolt16_olt |
| 237 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 238 | ofagent: |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 239 | ifneq ($(VOLTHA_BUILD),docker) |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 240 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-ofagent:${TAG} -f docker/Dockerfile.ofagent . |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 241 | else |
| 242 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-ofagent:${TAG} -f docker/Dockerfile.ofagent_d . |
| 243 | endif |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 244 | |
Sergio Slobodrian | cab0a39 | 2017-07-13 08:42:10 -0400 | [diff] [blame] | 245 | tools: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 246 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-tools:${TAG} -f docker/Dockerfile.tools . |
Sergio Slobodrian | cab0a39 | 2017-07-13 08:42:10 -0400 | [diff] [blame] | 247 | |
sathishg | b5d1c18 | 2017-07-13 14:20:19 +0530 | [diff] [blame] | 248 | fluentd: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 249 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-fluentd:${TAG} -f docker/Dockerfile.fluentd . |
sathishg | b5d1c18 | 2017-07-13 14:20:19 +0530 | [diff] [blame] | 250 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 251 | envoy: envoyd |
| 252 | ifneq ($(VOLTHA_BUILD),docker) |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 253 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-envoy:${TAG} -f docker/Dockerfile.envoy . |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 254 | else |
| 255 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-envoy:${TAG} -f docker/Dockerfile.envoy_d . |
| 256 | endif |
Sergio Slobodrian | cab0a39 | 2017-07-13 08:42:10 -0400 | [diff] [blame] | 257 | |
Sergio Slobodrian | be82927 | 2017-07-17 14:45:45 -0400 | [diff] [blame] | 258 | envoyd: |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 259 | ifneq ($(VOLTHA_BUILD),docker) |
Sergio Slobodrian | 6570c74 | 2017-08-07 23:11:33 -0400 | [diff] [blame] | 260 | make -C envoy |
Sergio Slobodrian | be82927 | 2017-07-17 14:45:45 -0400 | [diff] [blame] | 261 | make -C envoy/go/envoyd |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 262 | endif |
Sergio Slobodrian | be82927 | 2017-07-17 14:45:45 -0400 | [diff] [blame] | 263 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 264 | go-builder: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 265 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-go-builder:${TAG} -f envoy/go/golang-builder/Dockerfile ./envoy/go/golang-builder |
Sergio Slobodrian | be82927 | 2017-07-17 14:45:45 -0400 | [diff] [blame] | 266 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 267 | netconf: |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 268 | ifneq ($(VOLTHA_BUILD),docker) |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 269 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-netconf:${TAG} -f docker/Dockerfile.netconf . |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 270 | else |
| 271 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-netconf:${TAG} -f docker/Dockerfile.netconf_d . |
| 272 | endif |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 273 | |
Stephane Barbarie | 1408896 | 2017-06-01 16:56:55 -0400 | [diff] [blame] | 274 | netopeer: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 275 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-netopeer:${TAG} -f docker/Dockerfile.netopeer . |
Stephane Barbarie | 1408896 | 2017-06-01 16:56:55 -0400 | [diff] [blame] | 276 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 277 | shovel: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 278 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-shovel:${TAG} -f docker/Dockerfile.shovel . |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 279 | |
Sergio Slobodrian | 9358bd4 | 2017-03-10 22:52:24 -0500 | [diff] [blame] | 280 | dashd: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 281 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-dashd:${TAG} -f docker/Dockerfile.dashd . |
Sergio Slobodrian | 9358bd4 | 2017-03-10 22:52:24 -0500 | [diff] [blame] | 282 | |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 283 | cli: |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 284 | ifneq ($(VOLTHA_BUILD),docker) |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 285 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-cli:${TAG} -f docker/Dockerfile.cli . |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 286 | else |
| 287 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-cli:${TAG} -f docker/Dockerfile.cli_d . |
| 288 | endif |
Sergio Slobodrian | ab11c64 | 2017-04-24 07:16:58 -0400 | [diff] [blame] | 289 | |
Sergio Slobodrian | 4d30710 | 2017-04-24 10:19:00 -0400 | [diff] [blame] | 290 | portainer: |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 291 | ifneq ($(VOLTHA_BUILD),docker) |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 292 | REGISTRY=${REGISTRY} REPOSITORY=${REPOSITORY} TAG=${TAG} portainer/buildPortainer.sh |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 293 | else |
| 294 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-portainer:${TAG} -f docker/Dockerfile.portainer_d . |
| 295 | endif |
Sergio Slobodrian | 4d30710 | 2017-04-24 10:19:00 -0400 | [diff] [blame] | 296 | |
Sergio Slobodrian | ff52e1b | 2017-04-24 12:39:08 -0400 | [diff] [blame] | 297 | nginx: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 298 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-nginx:${TAG} -f docker/Dockerfile.nginx . |
Sergio Slobodrian | ff52e1b | 2017-04-24 12:39:08 -0400 | [diff] [blame] | 299 | |
schowdhury | 4073921 | 2017-06-12 07:40:31 -0700 | [diff] [blame] | 300 | consul: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 301 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-consul:${TAG} -f docker/Dockerfile.consul . |
schowdhury | 4073921 | 2017-06-12 07:40:31 -0700 | [diff] [blame] | 302 | |
Sergio Slobodrian | ff52e1b | 2017-04-24 12:39:08 -0400 | [diff] [blame] | 303 | grafana: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 304 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-grafana:${TAG} -f docker/Dockerfile.grafana . |
Sergio Slobodrian | ff52e1b | 2017-04-24 12:39:08 -0400 | [diff] [blame] | 305 | |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 306 | onos: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 307 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-onos:${TAG} -f docker/Dockerfile.onos docker |
Zsolt Haraszti | db89233 | 2017-01-09 11:08:38 -0800 | [diff] [blame] | 308 | |
David K. Bainbridge | 215e024 | 2017-09-05 23:18:24 -0700 | [diff] [blame] | 309 | unum: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 310 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-unum:${TAG} -f unum/Dockerfile ./unum |
David K. Bainbridge | 215e024 | 2017-09-05 23:18:24 -0700 | [diff] [blame] | 311 | |
alshabib | 5e18057 | 2017-01-10 23:59:47 -0600 | [diff] [blame] | 312 | tester: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 313 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-tester:${TAG} -f docker/Dockerfile.tester docker |
alshabib | 5e18057 | 2017-01-10 23:59:47 -0600 | [diff] [blame] | 314 | |
alshabib | a551408 | 2017-03-31 11:08:27 -0500 | [diff] [blame] | 315 | config-push: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 316 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-config-push:${TAG} -f docker/Dockerfile.configpush docker |
alshabib | a551408 | 2017-03-31 11:08:27 -0500 | [diff] [blame] | 317 | |
Stephane Barbarie | 95507c4 | 2017-09-19 10:41:04 -0400 | [diff] [blame] | 318 | opennms: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 319 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-opennms:${TAG} -f docker/Dockerfile.opennms . |
Stephane Barbarie | 95507c4 | 2017-09-19 10:41:04 -0400 | [diff] [blame] | 320 | |
| 321 | logstash: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 322 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-logstash:${TAG} -f docker/Dockerfile.logstash . |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 323 | |
| 324 | j2: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 325 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-j2:${TAG} -f docker/Dockerfile.j2 docker |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 326 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 327 | test_runner: |
| 328 | ifeq ($(VOLTHA_BUILD),docker) |
| 329 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-test_runner:${TAG} -f docker/Dockerfile.test_runner . |
| 330 | endif |
| 331 | |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 332 | start: |
| 333 | bash -c 'echo $$VOLTHA_LOGS && TMP_STACK_FILE=$$(mktemp -u) && \ |
| 334 | echo $$TMP_STACK_FILE && \ |
| 335 | SWARM_MANAGER_COUNT=$$(docker node ls | grep Ready | egrep "(Leader)|(Reachable)" | wc -l | sed -e "s/ //g") && \ |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 336 | cat ./compose/voltha-stack.yml.j2 2>&1 | docker run -e RADIUS_ROOT=$$RADIUS_ROOT -e CONSUL_ROOT=$$CONSUL_ROOT -e VOLTHA_LOGS=$$VOLTHA_LOGS -e SWARM_MANAGER_COUNT=$$SWARM_MANAGER_COUNT --rm -i ${REGISTRY}${REPOSITORY}voltha-j2:${TAG} - 2>&1 > $$TMP_STACK_FILE && \ |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 337 | docker stack deploy -c $$TMP_STACK_FILE voltha && \ |
| 338 | rm -f $$TMP_STACK_FILE' |
| 339 | |
| 340 | stop: |
| 341 | docker stack rm voltha |
Sergio Slobodrian | ff52e1b | 2017-04-24 12:39:08 -0400 | [diff] [blame] | 342 | |
David K. Bainbridge | 52c25df | 2018-01-19 16:41:38 -0800 | [diff] [blame] | 343 | tag: $(patsubst %,%.tag,$(DOCKER_IMAGE_LIST)) |
| 344 | |
| 345 | push: tag $(patsubst %,%.push,$(DOCKER_IMAGE_LIST)) |
| 346 | |
| 347 | pull: $(patsubst %,%.pull,$(DOCKER_IMAGE_LIST)) |
| 348 | |
| 349 | %.tag: |
| 350 | docker tag ${REGISTRY}${REPOSITORY}voltha-$(subst .tag,,$@):${TAG} ${TARGET_REGISTRY}${TARGET_REPOSITORY}voltha-$(subst .tag,,$@):${TARGET_TAG} |
| 351 | |
| 352 | %.push: |
| 353 | docker push ${TARGET_REGISTRY}${TARGET_REPOSITORY}voltha-$(subst .push,,$@):${TARGET_TAG} |
| 354 | |
| 355 | %.pull: |
| 356 | docker pull ${REGISTRY}${REPOSITORY}voltha-$(subst .pull,,$@):${TAG} |
| 357 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 358 | protoc: |
| 359 | ifeq ($(VOLTHA_BUILD),docker) |
| 360 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-protoc:${TAG} -f docker/Dockerfile.protoc . |
| 361 | endif |
| 362 | |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 363 | protos: |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 364 | ifneq ($(VOLTHA_BUILD),docker) |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 365 | make -C voltha/protos |
Zsolt Haraszti | 023ea7c | 2016-10-16 19:30:34 -0700 | [diff] [blame] | 366 | make -C ofagent/protos |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 367 | make -C netconf/protos |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 368 | else |
| 369 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-protos:${TAG} -f docker/Dockerfile.protos . |
| 370 | endif |
Zsolt Haraszti | a54f2ac | 2016-09-21 15:54:15 -0700 | [diff] [blame] | 371 | |
| 372 | install-protoc: |
Zsolt Haraszti | 5cd6470 | 2016-09-27 13:48:35 -0700 | [diff] [blame] | 373 | make -C voltha/protos install-protoc |
Zsolt Haraszti | a54f2ac | 2016-09-21 15:54:15 -0700 | [diff] [blame] | 374 | |
Zsolt Haraszti | b71c2a0 | 2016-09-12 13:12:07 -0700 | [diff] [blame] | 375 | clean: |
| 376 | find voltha -name '*.pyc' | xargs rm -f |
| 377 | |
Nathan Knuth | a6b09e3 | 2016-09-21 16:26:09 -0700 | [diff] [blame] | 378 | distclean: clean |
| 379 | rm -rf ${VENVDIR} |
| 380 | |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 381 | fetch: |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 382 | @bash -c ' \ |
| 383 | for i in $(FETCH_IMAGE_LIST); do \ |
| 384 | docker pull $$i; \ |
| 385 | done' |
| 386 | |
| 387 | fetch-jenkins: fetch |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 388 | |
| 389 | purge-venv: |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 390 | rm -fr ${VENVDIR} |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 391 | |
| 392 | rebuild-venv: purge-venv venv |
| 393 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 394 | ifneq ($(VOLTHA_BUILD),docker) |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 395 | venv: ${VENVDIR}/.built |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 396 | else |
| 397 | venv: |
| 398 | endif |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 399 | |
| 400 | ${VENVDIR}/.built: |
| 401 | @ virtualenv ${VENVDIR} |
| 402 | @ . ${VENVDIR}/bin/activate && \ |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 403 | pip install --upgrade pip; \ |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 404 | if ! pip install -r requirements.txt; \ |
| 405 | then \ |
| 406 | echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \ |
| 407 | echo "see the BUILD.md file for a workaround"; \ |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 408 | else \ |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 409 | uname -s > ${VENVDIR}/.built; \ |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 410 | fi |
| 411 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 412 | ifneq ($(VOLTHA_BUILD),docker) |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 413 | test: venv protos run-as-root-tests |
| 414 | @ echo "Executing all tests" |
| 415 | . ${VENVDIR}/bin/activate && \ |
| 416 | nosetests -s tests \ |
| 417 | --exclude-dir=./tests/itests/run_as_root/ |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 418 | else |
| 419 | test: protos test_runner run-as-root-tests |
| 420 | docker run \ |
| 421 | -e VOLTHA_BUILD=docker \ |
| 422 | -e REGISTRY=${REGISTRY} \ |
| 423 | -e REPOSITORY=${REPOSITORY} \ |
| 424 | -e TAG=${TAG} \ |
| 425 | -e DOCKER_HOST_IP=${DOCKER_HOST_IP} \ |
| 426 | --rm --net=host -v /var/run/docker.sock:/var/run/docker.sock \ |
| 427 | ${REGISTRY}${REPSOITORY}voltha-test_runner:${TAG} \ |
| 428 | nosetests -s tests --exclude-dir=./tests/itests/run_as_root/ |
| 429 | endif |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 430 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 431 | ifneq ($(VOLTHA_BUILD),docker) |
Zsolt Haraszti | 6618662 | 2016-11-08 14:24:00 -0800 | [diff] [blame] | 432 | utest: venv protos |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 433 | @ echo "Executing all unit tests" |
| 434 | . ${VENVDIR}/bin/activate && \ |
Kim Kempf | 8c2812c | 2017-10-23 15:07:50 -0700 | [diff] [blame] | 435 | for d in $$(find ./tests/utests -type d|sort -nr); do echo $$d:; nosetests $$d; done |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 436 | else |
| 437 | utest: protos test_runner |
| 438 | docker run \ |
| 439 | -e VOLTHA_BUILD=docker \ |
| 440 | -e REGISTRY=${REGISTRY} \ |
| 441 | -e REPOSITORY=${REPOSITORY} \ |
| 442 | -e TAG=${TAG} \ |
| 443 | -e DOCKER_HOST_IP=${DOCKER_HOST_IP} \ |
| 444 | --rm --net=host -v /var/run/docker.sock:/var/run/docker.sock \ |
| 445 | ${REGISTRY}${REPSOITORY}voltha-test_runner:${TAG} \ |
| 446 | bash -c \ |
| 447 | 'for d in $$(find ./tests/utests -type d|sort -nr); do \ |
| 448 | echo $$d:; \ |
| 449 | nosetests $$d; \ |
| 450 | done' |
| 451 | endif |
alshabib | 29a3ed5 | 2017-01-23 14:29:21 -0800 | [diff] [blame] | 452 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 453 | ifneq ($(VOLTHA_BUILD),docker) |
alshabib | 29a3ed5 | 2017-01-23 14:29:21 -0800 | [diff] [blame] | 454 | utest-with-coverage: venv protos |
| 455 | @ echo "Executing all unit tests and producing coverage results" |
| 456 | . ${VENVDIR}/bin/activate && \ |
Kim Kempf | 8c2812c | 2017-10-23 15:07:50 -0700 | [diff] [blame] | 457 | for d in $$(find ./tests/utests -type d|sort -nr); do echo $$d:; \ |
khenaidoo | 079a776 | 2017-10-26 21:42:05 -0400 | [diff] [blame] | 458 | nosetests --with-xcoverage --with-xunit --cover-package=voltha,common,ofagent $$d; done |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 459 | else |
| 460 | utest-with-coverage: protos test_runner |
| 461 | @echo "Executing all unit tests and producing coverage results" |
| 462 | docker run \ |
| 463 | -e VOLTHA_BUILD=docker \ |
| 464 | -e REGISTRY=${REGISTRY} \ |
| 465 | -e REPOSITORY=${REPOSITORY} \ |
| 466 | -e TAG=${TAG} \ |
| 467 | -e DOCKER_HOST_IP=${DOCKER_HOST_IP} \ |
| 468 | --rm --net=host -v /var/run/docker.sock:/var/run/docker.sock \ |
| 469 | ${REGISTRY}${REPSOITORY}voltha-test_runner:${TAG} \ |
| 470 | bash -c \ |
| 471 | 'for d in $$(find ./tests/utests -type d|sort -nr); do \ |
| 472 | echo $$d:; \ |
| 473 | nosetests --with-xcoverage --with-xunit --cover-package=voltha,common,ofagent $$d; \ |
| 474 | done' |
| 475 | endif |
Khen Nursimulu | 37a9bf8 | 2016-10-16 20:11:31 -0400 | [diff] [blame] | 476 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 477 | ifneq ($(VOLTHA_BUILD),docker) |
Zsolt Haraszti | 348d193 | 2016-12-10 01:10:07 -0800 | [diff] [blame] | 478 | itest: venv run-as-root-tests |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 479 | @ echo "Executing all integration tests" |
| 480 | . ${VENVDIR}/bin/activate && \ |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 481 | rm -rf /tmp/fluentd/* && \ |
| 482 | REGISTRY=${REGISTRY} \ |
| 483 | REPOSITORY=${REPOSITORY} \ |
| 484 | TAG=${TAG} \ |
| 485 | DOCKER_HOST_IP=${DOCKER_HOST_IP} \ |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 486 | nosetests -s \ |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 487 | tests/itests/docutests/build_md_test.py \ |
| 488 | --exclude-dir=./tests/utests/ \ |
| 489 | --exclude-dir=./tests/itests/run_as_root/ |
| 490 | else |
| 491 | itest: protos test_runner |
| 492 | @ echo "Executing all integration tests" |
| 493 | docker run \ |
| 494 | -e VOLTHA_BUILD=docker \ |
| 495 | -e REGISTRY=${REGISTRY} \ |
| 496 | -e REPOSITORY=${REPOSITORY} \ |
| 497 | -e TAG=${TAG} \ |
| 498 | -e DOCKER_HOST_IP=${DOCKER_HOST_IP} \ |
| 499 | --rm --net=host -v /var/run/docker.sock:/var/run/docker.sock \ |
| 500 | ${REGISTRY}${REPSOITORY}voltha-test_runner:${TAG} \ |
| 501 | nosetests -s \ |
| 502 | tests/itests/docutests/build_md_test.py \ |
| 503 | --exclude-dir=./tests/utests/ \ |
| 504 | --exclude-dir=./tests/itests/run_as_root/ |
| 505 | endif |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 506 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 507 | ifneq ($(VOLTHA_BUILD),docker) |
Zsolt Haraszti | 348d193 | 2016-12-10 01:10:07 -0800 | [diff] [blame] | 508 | smoke-test: venv run-as-root-tests |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 509 | @ echo "Executing smoke tests" |
Khen Nursimulu | 96bb532 | 2016-11-09 20:16:03 -0800 | [diff] [blame] | 510 | . ${VENVDIR}/bin/activate && \ |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 511 | rm -rf /tmp/fluentd/* && \ |
| 512 | REGISTRY=${REGISTRY} \ |
| 513 | REPOSITORY=${REPOSITORY} \ |
| 514 | TAG=${TAG} \ |
| 515 | DOCKER_HOST_IP=${DOCKER_HOST_IP} \ |
Khen Nursimulu | 96bb532 | 2016-11-09 20:16:03 -0800 | [diff] [blame] | 516 | nosetests -s \ |
| 517 | 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] | 518 | --exclude-dir=./tests/itests/run_as_root/ |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 519 | else |
| 520 | smoke-test: protos test_runner run-as-root-tests |
| 521 | @ echo "Executing smoke tests" |
| 522 | docker run \ |
| 523 | -e VOLTHA_BUILD=docker \ |
| 524 | -e REGISTRY=${REGISTRY} \ |
| 525 | -e REPOSITORY=${REPOSITORY} \ |
| 526 | -e TAG=${TAG} \ |
| 527 | -e DOCKER_HOST_IP=${DOCKER_HOST_IP} \ |
| 528 | --rm --net=host -v /var/run/docker.sock:/var/run/docker.sock \ |
| 529 | ${REGISTRY}${REPSOITORY}voltha-test_runner:${TAG} \ |
| 530 | nosetests -s \ |
| 531 | tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \ |
| 532 | --exclude-dir=./tests/itests/run_as_root/ |
| 533 | endif |
Khen Nursimulu | 96bb532 | 2016-11-09 20:16:03 -0800 | [diff] [blame] | 534 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 535 | ifneq ($(VOLTHA_BUILD),docker) |
khenaidoo | 1243ee9 | 2017-07-17 15:54:06 -0400 | [diff] [blame] | 536 | jenkins-test: venv |
| 537 | @ echo "Executing jenkins smoke tests" |
| 538 | . ${VENVDIR}/bin/activate && \ |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 539 | rm -rf /tmp/fluentd/* && \ |
| 540 | REGISTRY=${REGISTRY} \ |
| 541 | REPOSITORY=${REPOSITORY} \ |
| 542 | TAG=${TAG} \ |
| 543 | DOCKER_HOST_IP=${DOCKER_HOST_IP} \ |
khenaidoo | 1243ee9 | 2017-07-17 15:54:06 -0400 | [diff] [blame] | 544 | nosetests -s \ |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 545 | tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \ |
| 546 | --exclude-dir=./tests/itests/run_as_root/ |
| 547 | else |
| 548 | jenkins-test: protos test_runner |
| 549 | @ echo "Executing jenkins smoke tests" |
| 550 | @ echo "Starting VOLTHA as docker-compose services" |
| 551 | docker run \ |
| 552 | -e REGISTRY=${REGISTRY} \ |
| 553 | -e REPOSITORY=${REPOSITORY} \ |
| 554 | -e TAG=${TAG} \ |
| 555 | -e DOCKER_HOST_IP=${DOCKER_HOST_IP} \ |
| 556 | --rm --net=host -v /var/run/docker.sock:/var/run/docker.sock \ |
| 557 | ${REGISTRY}${REPSOITORY}voltha-test_runner:${TAG} \ |
| 558 | nosetests -s \ |
| 559 | tests/itests/docutests/build_md_test.py:BuildMdTests.test_07_start_all_containers \ |
| 560 | --exclude-dir=./tests/itests/run_as_root/ |
| 561 | endif |
khenaidoo | 1243ee9 | 2017-07-17 15:54:06 -0400 | [diff] [blame] | 562 | |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 563 | ifneq ($(VOLTHA_BUILD),docker) |
Khen Nursimulu | 34e7ebb | 2016-11-10 13:38:44 -0800 | [diff] [blame] | 564 | run-as-root-tests: |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 565 | docker run -i --rm -v /cord/incubator/voltha:/voltha --privileged ${REGISTRY}${REPOSITORY}voltha-base:${TAG} env PYTHONPATH=/voltha python /voltha/tests/itests/run_as_root/test_frameio.py |
David K. Bainbridge | da61772 | 2018-01-29 09:54:40 -0800 | [diff] [blame^] | 566 | else |
| 567 | run-as-root-tests: |
| 568 | docker run \ |
| 569 | -e VOLTHA_BUILD=docker \ |
| 570 | -e REGISTRY=${REGISTRY} \ |
| 571 | -e REPOSITORY=${REPOSITORY} \ |
| 572 | -e TAG=${TAG} \ |
| 573 | -e DOCKER_HOST_IP=${DOCKER_HOST_IP} \ |
| 574 | --rm --privileged \ |
| 575 | ${REGISTRY}${REPOSITORY}voltha-test_runner:${TAG} \ |
| 576 | env PYTHONPATH=/work python tests/itests/run_as_root/test_frameio.py |
| 577 | endif |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 578 | |
| 579 | flake8: $(DIRS_FLAKE8) |
Nathan Knuth | 220a677 | 2016-10-11 08:10:46 -0700 | [diff] [blame] | 580 | |
| 581 | # end file |