blob: e38aa100c335b13c1952e8ff8a255294eae45c53 [file] [log] [blame]
Scott Baker31c3c0a2019-04-02 11:22:41 -07001# Copyright 2019-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# Configure shell
16SHELL = bash -e -o pipefail
17
18# Variables
19VERSION ?= $(shell cat ./VERSION)
20SERVICE_NAME ?= $(notdir $(abspath .))
21SYNCHRONIZER_NAME ?= simpleexampleservice-synchronizer
22
23## Docker related
24DOCKER_REGISTRY ?=
25DOCKER_REPOSITORY ?=
26DOCKER_BUILD_ARGS ?=
27DOCKER_TAG ?= ${VERSION}
28DOCKER_IMAGENAME := ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}${SYNCHRONIZER_NAME}:${DOCKER_TAG}
29
30## Docker labels. Only set ref and commit date if committed
31DOCKER_LABEL_VCS_URL ?= $(shell git remote get-url $(shell git remote))
32DOCKER_LABEL_VCS_REF ?= $(shell git diff-index --quiet HEAD -- && git rev-parse HEAD || echo "unknown")
33DOCKER_LABEL_COMMIT_DATE ?= $(shell git diff-index --quiet HEAD -- && git show -s --format=%cd --date=iso-strict HEAD || echo "unknown" )
34DOCKER_LABEL_BUILD_DATE ?= $(shell date -u "+%Y-%m-%dT%H:%M:%SZ")
35
36## Migration related - paths are relative to the xos subdirectory within this repo
37XOS_DIR ?= "../../../xos"
38SERVICES_DIR ?= "../.."
39
40all: test
41
42docker-build:
43 docker build $(DOCKER_BUILD_ARGS) \
44 -t ${DOCKER_IMAGENAME} \
45 --build-arg org_label_schema_version="${VERSION}" \
46 --build-arg org_label_schema_vcs_url="${DOCKER_LABEL_VCS_URL}" \
47 --build-arg org_label_schema_vcs_ref="${DOCKER_LABEL_VCS_REF}" \
48 --build-arg org_label_schema_build_date="${DOCKER_LABEL_BUILD_DATE}" \
49 --build-arg org_opencord_vcs_commit_date="${DOCKER_LABEL_COMMIT_DATE}" \
50 -f Dockerfile.synchronizer .
51
52docker-push:
53 docker push ${DOCKER_IMAGENAME}
54
Scott Baker417e6de2019-04-09 16:23:32 -070055test: test-unit test-migration test-xproto
Scott Baker31c3c0a2019-04-02 11:22:41 -070056
57test-unit:
58 tox
59
60# NOTE: Avoid #! on pip and xos-migrate due to line-length issue.
61# See https://github.com/pypa/virtualenv/issues/596
62
63venv-service:
64 virtualenv $@;\
65 source ./$@/bin/activate ; set -u ;\
Himanshu Bhandari19836972020-06-01 17:39:13 +053066 python venv-service/bin/pip install -r requirements.txt xosmigrate~=4.0.0
Scott Baker31c3c0a2019-04-02 11:22:41 -070067
68create-migration: venv-service
69 source ./venv-service/bin/activate; set -u;\
70 cd xos; xos-migrate --xos-dir ${XOS_DIR} --services-dir ${SERVICES_DIR} -s ${SERVICE_NAME}
71
72test-migration: venv-service
73 source ./venv-service/bin/activate; set -u;\
74 cd xos; python ../venv-service/bin/xos-migrate --xos-dir ${XOS_DIR} --services-dir ${SERVICES_DIR} -s ${SERVICE_NAME} --check
75
Scott Baker417e6de2019-04-09 16:23:32 -070076test-xproto: venv-service
77 source ./venv-service/bin/activate; set -u;\
78 python venv-service/bin/xosgenx --lint --strict xos/synchronizer/models/simpleexampleservice.xproto
79
Scott Baker31c3c0a2019-04-02 11:22:41 -070080clean:
81 find . -name '*.pyc' | xargs rm -f
82 rm -rf \
83 .tox \
84 venv-service \
85 xos/.coverage \
86 xos/coverage.xml \
87 xos/nose2-results.xml