blob: 1cb11dec75d0a63946b51091e8691918748daea7 [file] [log] [blame]
William Kurkian6f436d02019-02-06 16:25:01 -05001#
2# Copyright 2018 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
William Kurkian6f436d02019-02-06 16:25:01 -050017ifeq ($(TAG),)
18TAG := latest
19endif
20
21ifeq ($(TARGET_TAG),)
22TARGET_TAG := latest
23endif
24
William Kurkian6f436d02019-02-06 16:25:01 -050025ifneq ($(http_proxy)$(https_proxy),)
26# Include proxies from the environment
27DOCKER_PROXY_ARGS = \
28 --build-arg http_proxy=$(http_proxy) \
29 --build-arg https_proxy=$(https_proxy) \
30 --build-arg ftp_proxy=$(ftp_proxy) \
31 --build-arg no_proxy=$(no_proxy) \
32 --build-arg HTTP_PROXY=$(HTTP_PROXY) \
33 --build-arg HTTPS_PROXY=$(HTTPS_PROXY) \
34 --build-arg FTP_PROXY=$(FTP_PROXY) \
35 --build-arg NO_PROXY=$(NO_PROXY)
36endif
37
38DOCKER_BUILD_ARGS = \
39 --build-arg TAG=$(TAG) \
40 --build-arg REGISTRY=$(REGISTRY) \
41 --build-arg REPOSITORY=$(REPOSITORY) \
42 $(DOCKER_PROXY_ARGS) $(DOCKER_CACHE_ARG) \
43 --rm --force-rm \
44 $(DOCKER_BUILD_EXTRA_ARGS)
45
William Kurkiane5301042019-04-09 16:49:36 -040046DOCKER_BUILD_EXTRA_ARGS = \
47 --build-arg LOCAL_PYVOLTHA=$(LOCAL_PYVOLTHA) \
48 --build-arg LOCAL_PROTOS=$(LOCAL_PROTOS)
49
Matt Jeanneretf35be112019-03-05 10:58:57 -050050DOCKER_IMAGE_LIST = \
51 voltha-openolt-adapter-base \
52 voltha-openolt-adapter
53
William Kurkian6f436d02019-02-06 16:25:01 -050054VENVDIR := venv-$(shell uname -s | tr '[:upper:]' '[:lower:]')
55
Matt Jeanneretf35be112019-03-05 10:58:57 -050056.PHONY: $(DIRS) $(DIRS_CLEAN) base openolt_adapter
William Kurkian6f436d02019-02-06 16:25:01 -050057
58# This should to be the first and default target in this Makefile
59help:
60 @echo "Usage: make [<target>]"
61 @echo "where available targets are:"
62 @echo
Matt Jeanneretf35be112019-03-05 10:58:57 -050063 @echo "build : Build the adapter."
64 @echo "clean : Remove files created by the build and tests"
65 @echo "distclean : Remove venv directory"
66 @echo "help : Print this help"
67 @echo "rebuild-venv : Rebuild local Python virtualenv from scratch"
68 @echo "venv : Build local Python virtualenv if did not exist yet"
69 @echo "containers : Build all the docker containers"
70 @echo "base : Build a base docker image with a modern version of pip and requirements.txt installed"
71 @echo "openolt_adapter : Build the openolt adapter docker container"
72 @echo "tag : Tag a set of images"
73 @echo "push : Push the docker images to an external repository"
74 @echo "pull : Pull the docker images from a repository"
William Kurkian6f436d02019-02-06 16:25:01 -050075 @echo
76
William Kurkian44cd7bb2019-02-11 16:39:12 -050077build: containers
William Kurkian6f436d02019-02-06 16:25:01 -050078
Matt Jeanneretf35be112019-03-05 10:58:57 -050079containers: base openolt_adapter
William Kurkian44cd7bb2019-02-11 16:39:12 -050080
81base:
William Kurkiane5301042019-04-09 16:49:36 -040082 mkdir -p local_imports/
William Kurkian44cd7bb2019-02-11 16:39:12 -050083ifdef LOCAL_PYVOLTHA
William Kurkiane5301042019-04-09 16:49:36 -040084 mkdir -p local_imports/pyvoltha/dist
85 cp ../../pyvoltha/dist/*.tar.gz local_imports/pyvoltha/dist/
William Kurkian44cd7bb2019-02-11 16:39:12 -050086endif
William Kurkiane5301042019-04-09 16:49:36 -040087ifdef LOCAL_PROTOS
88 mkdir -p local_imports/voltha-protos/dist
89 cp ../../voltha-protos/dist/*.tar.gz local_imports/voltha-protos/dist/
90endif
91 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-openolt-adapter-base:${TAG} -f docker/Dockerfile.base .
92
William Kurkian44cd7bb2019-02-11 16:39:12 -050093
Matt Jeanneretf35be112019-03-05 10:58:57 -050094openolt_adapter: base
William Kurkian44cd7bb2019-02-11 16:39:12 -050095 docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-openolt-adapter:${TAG} -f docker/Dockerfile.openolt_adapter .
William Kurkian6f436d02019-02-06 16:25:01 -050096
97tag: $(patsubst %,%.tag,$(DOCKER_IMAGE_LIST))
98
99push: tag $(patsubst %,%.push,$(DOCKER_IMAGE_LIST))
100
101pull: $(patsubst %,%.pull,$(DOCKER_IMAGE_LIST))
102
103%.tag:
104 docker tag ${REGISTRY}${REPOSITORY}voltha-$(subst .tag,,$@):${TAG} ${TARGET_REGISTRY}${TARGET_REPOSITORY}voltha-$(subst .tag,,$@):${TARGET_TAG}
105
106%.push:
107 docker push ${TARGET_REGISTRY}${TARGET_REPOSITORY}voltha-$(subst .push,,$@):${TARGET_TAG}
108
109%.pull:
110 docker pull ${REGISTRY}${REPOSITORY}voltha-$(subst .pull,,$@):${TAG}
111
William Kurkian6f436d02019-02-06 16:25:01 -0500112clean:
William Kurkiane5301042019-04-09 16:49:36 -0400113 rm -rf local_imports
William Kurkian6f436d02019-02-06 16:25:01 -0500114 find . -name '*.pyc' | xargs rm -f
William Kurkian6f436d02019-02-06 16:25:01 -0500115
116distclean: clean
117 rm -rf ${VENVDIR}
118
William Kurkian6f436d02019-02-06 16:25:01 -0500119purge-venv:
120 rm -fr ${VENVDIR}
121
122rebuild-venv: purge-venv venv
123
William Kurkian6f436d02019-02-06 16:25:01 -0500124venv: ${VENVDIR}/.built
William Kurkian6f436d02019-02-06 16:25:01 -0500125
126${VENVDIR}/.built:
Matt Jeanneretb428b952019-03-07 05:14:17 -0500127 virtualenv -v ${VENVDIR}
128 # these are just symlinks to the other folders in the venv. this makes it appear as if there are duplicate definitions in PYTHONPATH. venv bug?
129 rm ${VENVDIR}/local/bin ${VENVDIR}/local/lib ${VENVDIR}/local/include
130 . ${VENVDIR}/bin/activate && \
William Kurkian6f436d02019-02-06 16:25:01 -0500131 pip install --upgrade pip; \
132 if ! pip install -r requirements.txt; \
133 then \
134 echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \
135 echo "see the BUILD.md file for a workaround"; \
136 else \
137 uname -s > ${VENVDIR}/.built; \
138 fi
139
William Kurkian44cd7bb2019-02-11 16:39:12 -0500140ifdef LOCAL_PYVOLTHA
William Kurkiane5301042019-04-09 16:49:36 -0400141 mkdir -p local_imports/pyvoltha/dist
142 cp ../../pyvoltha/dist/*.tar.gz local_imports/pyvoltha/dist/
Matt Jeanneretb428b952019-03-07 05:14:17 -0500143 . ${VENVDIR}/bin/activate && \
William Kurkiane5301042019-04-09 16:49:36 -0400144 pip install local_imports/pyvoltha/dist/*.tar.gz
145endif
146ifdef LOCAL_PROTOS
147 mkdir -p local_imports/voltha-protos/dist
148 cp ../../voltha-protos/dist/*.tar.gz local_imports/voltha-protos/dist/
149 . ${VENVDIR}/bin/activate && \
150 pip install local_imports/voltha-protos/dist/*.tar.gz
William Kurkian44cd7bb2019-02-11 16:39:12 -0500151endif
152
William Kurkian6f436d02019-02-06 16:25:01 -0500153# end file