blob: ee23590399a9879e730196b00e7cb5c1122067c1 [file] [log] [blame]
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -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
Matt Jeanneret134d9e82019-05-08 15:45:10 -040017# set default shell
18SHELL = bash -e -o pipefail
19
20# Variables
21VERSION ?= $(shell cat ../VERSION)
22
Matt Jeanneret08a8e862019-12-20 14:02:32 -050023DOCKER_LABEL_VCS_DIRTY = false
24ifneq ($(shell git ls-files --others --modified --exclude-standard 2>/dev/null | wc -l | sed -e 's/ //g'),0)
25 DOCKER_LABEL_VCS_DIRTY = true
26endif
Matt Jeanneret134d9e82019-05-08 15:45:10 -040027## Docker related
28DOCKER_REGISTRY ?=
29DOCKER_REPOSITORY ?=
30DOCKER_BUILD_ARGS ?=
31DOCKER_TAG ?= ${VERSION}
32ADAPTER_IMAGENAME := ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-openonu-adapter:${DOCKER_TAG}
Andrea Campanella442d7e42019-12-17 15:27:52 -080033TYPE ?= minimal
Matt Jeanneret134d9e82019-05-08 15:45:10 -040034
35## Docker labels. Only set ref and commit date if committed
Matt Jeanneret08a8e862019-12-20 14:02:32 -050036DOCKER_LABEL_VCS_URL ?= $(shell git remote get-url $(shell git remote))
37DOCKER_LABEL_VCS_REF = $(shell git rev-parse HEAD)
38DOCKER_LABEL_BUILD_DATE ?= $(shell date -u "+%Y-%m-%dT%H:%M:%SZ")
39DOCKER_LABEL_COMMIT_DATE = $(shell git show -s --format=%cd --date=iso-strict HEAD)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050040
Matt Jeanneret134d9e82019-05-08 15:45:10 -040041.PHONY: venv docker-build local-protos local-pyvoltha
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050042
43# This should to be the first and default target in this Makefile
44help:
45 @echo "Usage: make [<target>]"
46 @echo "where available targets are:"
47 @echo
Matt Jeanneret134d9e82019-05-08 15:45:10 -040048 @echo "build : Build the openonu openomci adapter docker image"
49 @echo "help : Print this help"
50 @echo "docker-push : Push the docker images to an external repository"
51 @echo "venv : Build local Python virtualenv"
Matt Jeanneret18949ae2019-02-09 15:00:14 -050052 @echo "clean : Remove files created by the build and tests"
53 @echo "distclean : Remove venv directory"
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050054 @echo
55
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050056
Matt Jeanneret134d9e82019-05-08 15:45:10 -040057## Docker targets
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050058
Matt Jeanneret134d9e82019-05-08 15:45:10 -040059build: docker-build
60
Zack Williamsd3a56c42019-05-17 15:44:35 -070061# only test is that the docker container builds
62test: docker-build
63
64local-protos:
Matt Jeanneret134d9e82019-05-08 15:45:10 -040065 mkdir -p local_imports
66ifdef LOCAL_PROTOS
67 mkdir -p local_imports/voltha-protos/dist
William Kurkianeffdbf52019-11-13 16:01:09 -050068 cp ${LOCAL_PROTOS}/dist/*.tar.gz local_imports/voltha-protos/dist/
Matt Jeanneret134d9e82019-05-08 15:45:10 -040069endif
70
71local-pyvoltha:
William Kurkian07271552019-04-09 16:52:06 -040072 mkdir -p local_imports
Matt Jeanneret18949ae2019-02-09 15:00:14 -050073ifdef LOCAL_PYVOLTHA
William Kurkian07271552019-04-09 16:52:06 -040074 mkdir -p local_imports/pyvoltha/dist
William Kurkianeffdbf52019-11-13 16:01:09 -050075 cp ${LOCAL_PYVOLTHA}/dist/*.tar.gz local_imports/pyvoltha/dist/
Matt Jeanneret18949ae2019-02-09 15:00:14 -050076endif
Matt Jeanneret134d9e82019-05-08 15:45:10 -040077
78docker-build: local-protos local-pyvoltha
79 docker build $(DOCKER_BUILD_ARGS) \
80 -t ${ADAPTER_IMAGENAME} \
81 --build-arg LOCAL_PYVOLTHA=$(LOCAL_PYVOLTHA) \
82 --build-arg LOCAL_PROTOS=$(LOCAL_PROTOS) \
83 --build-arg org_label_schema_version="${VERSION}" \
84 --build-arg org_label_schema_vcs_url="${DOCKER_LABEL_VCS_URL}" \
85 --build-arg org_label_schema_vcs_ref="${DOCKER_LABEL_VCS_REF}" \
86 --build-arg org_label_schema_build_date="${DOCKER_LABEL_BUILD_DATE}" \
87 --build-arg org_opencord_vcs_commit_date="${DOCKER_LABEL_COMMIT_DATE}" \
Matt Jeanneret08a8e862019-12-20 14:02:32 -050088 --build-arg org_opencord_vcs_dirty="${DOCKER_LABEL_VCS_DIRTY}" \
Matt Jeanneret134d9e82019-05-08 15:45:10 -040089 -f docker/Dockerfile.openonu_adapter .
90
91docker-push:
92 docker push ${ADAPTER_IMAGENAME}
93
Andrea Campanella442d7e42019-12-17 15:27:52 -080094docker-kind-load:
95 @if [ "`kind get clusters | grep voltha-$(TYPE)`" = '' ]; then echo "no voltha-$(TYPE) cluster found" && exit 1; fi
96 kind load docker-image ${ADAPTER_IMAGENAME} --name=voltha-$(TYPE) --nodes $(shell kubectl get nodes --template='{{range .items}}{{.metadata.name}},{{end}}' | sed 's/,$$//')
Matt Jeanneret134d9e82019-05-08 15:45:10 -040097## Python venv dev environment
98
99VENVDIR := venv-openonu
100
101venv: distclean local-protos local-pyvoltha
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -0500102 virtualenv --python=python3.6 ${VENVDIR};\
Matt Jeanneret134d9e82019-05-08 15:45:10 -0400103 source ./${VENVDIR}/bin/activate ; set -u ;\
Matt Jeanneret134d9e82019-05-08 15:45:10 -0400104 pip install -r requirements.txt
105
106ifdef LOCAL_PYVOLTHA
107 source ./${VENVDIR}/bin/activate ; set -u ;\
108 pip install local_imports/pyvoltha/dist/*.tar.gz
109endif
William Kurkian07271552019-04-09 16:52:06 -0400110ifdef LOCAL_PROTOS
Matt Jeanneret134d9e82019-05-08 15:45:10 -0400111 source ./${VENVDIR}/bin/activate ; set -u ;\
112 pip install local_imports/voltha-protos/dist/*.tar.gz
William Kurkian07271552019-04-09 16:52:06 -0400113endif
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500114
115clean:
William Kurkian07271552019-04-09 16:52:06 -0400116 rm -rf local_imports
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500117 find . -name '*.pyc' | xargs rm -f
118
119distclean: clean
120 rm -rf ${VENVDIR}
121
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500122# end file