Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 1 | # |
| 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 | |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 17 | ifeq ($(TAG),) |
| 18 | TAG := latest |
| 19 | endif |
| 20 | |
| 21 | ifeq ($(TARGET_TAG),) |
| 22 | TARGET_TAG := latest |
| 23 | endif |
| 24 | |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 25 | ifneq ($(http_proxy)$(https_proxy),) |
| 26 | # Include proxies from the environment |
| 27 | DOCKER_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) |
| 36 | endif |
| 37 | |
| 38 | DOCKER_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 Kurkian | 0727155 | 2019-04-09 16:52:06 -0400 | [diff] [blame^] | 46 | DOCKER_BUILD_EXTRA_ARGS = \ |
| 47 | --build-arg LOCAL_PYVOLTHA=$(LOCAL_PYVOLTHA) \ |
| 48 | --build-arg LOCAL_PROTOS=$(LOCAL_PROTOS) |
| 49 | |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 50 | DOCKER_IMAGE_LIST = \ |
| 51 | voltha-openonu-adapter-base \ |
| 52 | voltha-openonu-adapter |
| 53 | |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 54 | VENVDIR := venv-$(shell uname -s | tr '[:upper:]' '[:lower:]') |
| 55 | |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 56 | .PHONY: $(DIRS) $(DIRS_CLEAN) base openonu_adapter |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 57 | |
| 58 | # This should to be the first and default target in this Makefile |
| 59 | help: |
| 60 | @echo "Usage: make [<target>]" |
| 61 | @echo "where available targets are:" |
| 62 | @echo |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 63 | @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" |
Matt Jeanneret | 76c98b1 | 2019-03-05 11:09:37 -0500 | [diff] [blame] | 71 | @echo "openonu_adapter : Build the openonu openomci adapter docker container" |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 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" |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 75 | @echo |
| 76 | |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 77 | build: containers |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 78 | |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 79 | containers: base openonu_adapter |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 80 | |
| 81 | base: |
William Kurkian | 0727155 | 2019-04-09 16:52:06 -0400 | [diff] [blame^] | 82 | mkdir -p local_imports |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 83 | ifdef LOCAL_PYVOLTHA |
William Kurkian | 0727155 | 2019-04-09 16:52:06 -0400 | [diff] [blame^] | 84 | mkdir -p local_imports/pyvoltha/dist |
| 85 | cp ../../pyvoltha/dist/*.tar.gz local_imports/pyvoltha/dist/ |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 86 | endif |
William Kurkian | 0727155 | 2019-04-09 16:52:06 -0400 | [diff] [blame^] | 87 | ifdef LOCAL_PROTOS |
| 88 | mkdir -p local_imports/voltha-protos/dist |
| 89 | cp ../../voltha-protos/dist/*.tar.gz local_imports/voltha-protos/dist/ |
| 90 | endif |
| 91 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-openonu-adapter-base:${TAG} -f docker/Dockerfile.base . |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 92 | |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 93 | openonu_adapter: base |
| 94 | ifdef PYVOLTHA_BASE_IMAGE |
| 95 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-openonu-adapter:${TAG} -f docker/Dockerfile.openonu_adapter_pyvoltha . |
| 96 | else |
| 97 | docker build $(DOCKER_BUILD_ARGS) -t ${REGISTRY}${REPOSITORY}voltha-openonu-adapter:${TAG} -f docker/Dockerfile.openonu_adapter . |
| 98 | endif |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 99 | |
| 100 | tag: $(patsubst %,%.tag,$(DOCKER_IMAGE_LIST)) |
| 101 | |
| 102 | push: tag $(patsubst %,%.push,$(DOCKER_IMAGE_LIST)) |
| 103 | |
| 104 | pull: $(patsubst %,%.pull,$(DOCKER_IMAGE_LIST)) |
| 105 | |
| 106 | %.tag: |
| 107 | docker tag ${REGISTRY}${REPOSITORY}voltha-$(subst .tag,,$@):${TAG} ${TARGET_REGISTRY}${TARGET_REPOSITORY}voltha-$(subst .tag,,$@):${TARGET_TAG} |
| 108 | |
| 109 | %.push: |
| 110 | docker push ${TARGET_REGISTRY}${TARGET_REPOSITORY}voltha-$(subst .push,,$@):${TARGET_TAG} |
| 111 | |
| 112 | %.pull: |
| 113 | docker pull ${REGISTRY}${REPOSITORY}voltha-$(subst .pull,,$@):${TAG} |
| 114 | |
| 115 | clean: |
William Kurkian | 0727155 | 2019-04-09 16:52:06 -0400 | [diff] [blame^] | 116 | rm -rf local_imports |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 117 | find . -name '*.pyc' | xargs rm -f |
| 118 | |
| 119 | distclean: clean |
| 120 | rm -rf ${VENVDIR} |
| 121 | |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 122 | purge-venv: |
| 123 | rm -fr ${VENVDIR} |
| 124 | |
| 125 | rebuild-venv: purge-venv venv |
| 126 | |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 127 | venv: ${VENVDIR}/.built |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 128 | |
| 129 | ${VENVDIR}/.built: |
Matt Jeanneret | a32441c | 2019-03-07 05:16:37 -0500 | [diff] [blame] | 130 | virtualenv -v ${VENVDIR} |
| 131 | # 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? |
| 132 | rm ${VENVDIR}/local/bin ${VENVDIR}/local/lib ${VENVDIR}/local/include |
| 133 | . ${VENVDIR}/bin/activate && \ |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 134 | pip install --upgrade pip; \ |
| 135 | if ! pip install -r requirements.txt; \ |
| 136 | then \ |
| 137 | echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \ |
| 138 | echo "see the BUILD.md file for a workaround"; \ |
| 139 | else \ |
| 140 | uname -s > ${VENVDIR}/.built; \ |
| 141 | fi |
| 142 | |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 143 | ifdef LOCAL_PYVOLTHA |
William Kurkian | 0727155 | 2019-04-09 16:52:06 -0400 | [diff] [blame^] | 144 | mkdir -p local_imports/pyvoltha/dist |
| 145 | cp ../../pyvoltha/dist/*.tar.gz local_imports/pyvoltha/dist/ |
Matt Jeanneret | a32441c | 2019-03-07 05:16:37 -0500 | [diff] [blame] | 146 | . ${VENVDIR}/bin/activate && \ |
William Kurkian | 0727155 | 2019-04-09 16:52:06 -0400 | [diff] [blame^] | 147 | pip install local_imports/pyvoltha/dist/*.tar.gz |
| 148 | endif |
| 149 | ifdef LOCAL_PROTOS |
| 150 | mkdir -p local_imports/voltha-protos/dist |
| 151 | cp ../../voltha-protos/dist/*.tar.gz local_imports/voltha-protos/dist/ |
| 152 | . ${VENVDIR}/bin/activate && \ |
| 153 | pip install local_protos/voltha-protos/dist/*.tar.gz |
Matt Jeanneret | 18949ae | 2019-02-09 15:00:14 -0500 | [diff] [blame] | 154 | endif |
Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 155 | # end file |