blob: 3f0663e24819f7bb77e70d90a9dda6d702e7a021 [file] [log] [blame]
Kent Hagermanda41d742020-01-07 14:55:56 -05001# Copyright 2020-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# set default shell options
16SHELL = bash -e -o pipefail
17
18## Variables
Kent Hagerman1f99b662020-03-10 17:22:11 -040019VERSION ?= $(shell cat ./VERSION)
abhaye3366572024-09-26 11:19:18 +053020GO_JUNIT_REPORT_VERSION ?= "1.0.0"
Kent Hagerman1f99b662020-03-10 17:22:11 -040021GOCOVER_COBERTURA_VERSION ?= "v0.0.0-20180217150009-aaee18c8195c"
abhaye3366572024-09-26 11:19:18 +053022GOLANG_VERSION ?= "1.23.1"
23GOLANG_VERSION_FOR_PROTOC ?= "1.16.3"
24GOLANGCI_LINT_VERSION ?= "1.61.0"
25HADOLINT_VERSION ?= "2.12.0"
Kent Hagerman1f99b662020-03-10 17:22:11 -040026PROTOC_VERSION ?= "3.7.0"
27PROTOC_SHA256SUM ?= "a1b8ed22d6dc53c5b8680a6f1760a305b33ef471bece482e92728f00ba2a2969"
28PROTOC_GEN_GO_VERSION ?= "1.3.2"
Zack Williams88200d32020-04-02 13:36:41 -070029PROTOC_GEN_GRPC_GATEWAY_VERSION ?= "1.14.3"
Andrea Campanella271afae2021-04-28 14:17:22 +020030PROTOC_GEN_CPP_VERSION ?= "1.31.1"
Kent Hagermanda41d742020-01-07 14:55:56 -050031
32# Docker related
33DOCKER_LABEL_VCS_DIRTY = false
34ifneq ($(shell git status --porcelain | wc -l | sed -e 's/ //g'),0)
35 DOCKER_LABEL_VCS_DIRTY = true
Kent Hagermanda41d742020-01-07 14:55:56 -050036endif
37
Zack Williamsfd620942020-01-28 11:18:38 -070038DOCKER ?= docker
Kent Hagermanda41d742020-01-07 14:55:56 -050039DOCKER_EXTRA_ARGS ?=
Kent Hagermanc5487052020-01-28 15:36:19 -050040DOCKER_REGISTRY ?=
41DOCKER_REPOSITORY ?= voltha/
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +000042DOCKER_TAG ?= ${VERSION}$(shell [[ ${DOCKER_LABEL_VCS_DIRTY} == "true" ]] && echo "-dirty" || true)
Kent Hagermanc5487052020-01-28 15:36:19 -050043IMAGENAME := ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-ci-tools
Kent Hagermanda41d742020-01-07 14:55:56 -050044
45## Docker labels. Only set ref and commit date if committed
Zack Williamsfd620942020-01-28 11:18:38 -070046DOCKER_LABEL_VCS_URL = $(shell git remote get-url "$(shell git remote)" 2>/dev/null)
Kent Hagermanc5487052020-01-28 15:36:19 -050047DOCKER_LABEL_VCS_REF = $(shell git rev-parse HEAD)
Zack Williamsfd620942020-01-28 11:18:38 -070048DOCKER_LABEL_BUILD_DATE = $(shell date -u "+%Y-%m-%dT%H:%M:%SZ")
Kent Hagermanc5487052020-01-28 15:36:19 -050049DOCKER_LABEL_COMMIT_DATE = $(shell git show -s --format=%cd --date=iso-strict HEAD)
Kent Hagermanda41d742020-01-07 14:55:56 -050050
51DOCKER_BUILD_ARGS ?= \
52 ${DOCKER_EXTRA_ARGS} \
53 --build-arg org_label_schema_version="${VERSION}" \
54 --build-arg org_label_schema_vcs_url="${DOCKER_LABEL_VCS_URL}" \
55 --build-arg org_label_schema_vcs_ref="${DOCKER_LABEL_VCS_REF}" \
56 --build-arg org_label_schema_build_date="${DOCKER_LABEL_BUILD_DATE}" \
57 --build-arg org_opencord_vcs_commit_date="${DOCKER_LABEL_COMMIT_DATE}" \
58 --build-arg org_opencord_vcs_dirty="${DOCKER_LABEL_VCS_DIRTY}"
59
60## runnable tool containers
Zack Williamsfd620942020-01-28 11:18:38 -070061HADOLINT = ${DOCKER} run --rm --user $$(id -u):$$(id -g) -v $$PWD:/app ${IMAGENAME}:${VERSION}-hadolint hadolint
Kent Hagermanda41d742020-01-07 14:55:56 -050062
Kent Hagermanc5487052020-01-28 15:36:19 -050063lint: docker-lint
Kent Hagermanda41d742020-01-07 14:55:56 -050064
65docker-lint: hadolint
66 @echo "Linting Dockerfiles..."
67 @${HADOLINT} $(shell ls docker/*.Dockerfile)
68 @echo "Dockerfiles linted OK"
69
70
71build: docker-build
72
Matteo Scandoloc333f522021-03-30 09:25:27 -070073docker-build: go-junit-report gocover-cobertura golang golangci-lint hadolint protoc python onos-config-loader
Kent Hagermanda41d742020-01-07 14:55:56 -050074
75go-junit-report:
Zack Williamsfd620942020-01-28 11:18:38 -070076 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +000077 --build-arg GOLANG_VERSION=${GOLANG_VERSION} \
Kent Hagermanda41d742020-01-07 14:55:56 -050078 --build-arg GO_JUNIT_REPORT_VERSION=${GO_JUNIT_REPORT_VERSION} \
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +000079 -t ${IMAGENAME}:${DOCKER_TAG}-go-junit-report \
Kent Hagermanda41d742020-01-07 14:55:56 -050080 -t ${IMAGENAME}:latest-go-junit-report \
81 -f docker/go-junit-report.Dockerfile .
82
83gocover-cobertura:
Zack Williamsfd620942020-01-28 11:18:38 -070084 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
Matteo Scandolo5cb1cce2020-11-19 17:39:13 -080085 --build-arg GOLANG_VERSION=${GOLANG_VERSION} \
Kent Hagermanda41d742020-01-07 14:55:56 -050086 --build-arg GOCOVER_COBERTURA_VERSION=${GOCOVER_COBERTURA_VERSION} \
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +000087 -t ${IMAGENAME}:${DOCKER_TAG}-gocover-cobertura \
Kent Hagermanda41d742020-01-07 14:55:56 -050088 -t ${IMAGENAME}:latest-gocover-cobertura \
89 -f docker/gocover-cobertura.Dockerfile .
90
91golang:
Zack Williamsfd620942020-01-28 11:18:38 -070092 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
Kent Hagermanda41d742020-01-07 14:55:56 -050093 --build-arg GOLANG_VERSION=${GOLANG_VERSION} \
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +000094 -t ${IMAGENAME}:${DOCKER_TAG}-golang \
Kent Hagermanda41d742020-01-07 14:55:56 -050095 -t ${IMAGENAME}:latest-golang \
96 -f docker/golang.Dockerfile .
97
Andrey Pozolotin49a35452020-08-14 22:14:51 +020098python:
99 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +0000100 -t ${IMAGENAME}:${DOCKER_TAG}-python \
Andrey Pozolotin49a35452020-08-14 22:14:51 +0200101 -t ${IMAGENAME}:latest-python \
102 -f docker/python.Dockerfile .
103
Kent Hagermanda41d742020-01-07 14:55:56 -0500104golangci-lint:
Zack Williamsfd620942020-01-28 11:18:38 -0700105 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
Kent Hagermanda41d742020-01-07 14:55:56 -0500106 --build-arg GOLANGCI_LINT_VERSION=${GOLANGCI_LINT_VERSION} \
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +0000107 -t ${IMAGENAME}:${DOCKER_TAG}-golangci-lint \
Kent Hagermanda41d742020-01-07 14:55:56 -0500108 -t ${IMAGENAME}:latest-golangci-lint \
109 -f docker/golangci-lint.Dockerfile .
110
111hadolint:
Zack Williamsfd620942020-01-28 11:18:38 -0700112 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
Kent Hagermanda41d742020-01-07 14:55:56 -0500113 --build-arg HADOLINT_VERSION=${HADOLINT_VERSION} \
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +0000114 -t ${IMAGENAME}:${DOCKER_TAG}-hadolint \
Kent Hagermanda41d742020-01-07 14:55:56 -0500115 -t ${IMAGENAME}:latest-hadolint \
116 -f docker/hadolint.Dockerfile .
117
118protoc:
Zack Williamsfd620942020-01-28 11:18:38 -0700119 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
abhaye3366572024-09-26 11:19:18 +0530120 --build-arg GOLANG_VERSION=${GOLANG_VERSION_FOR_PROTOC} \
Kent Hagermanda41d742020-01-07 14:55:56 -0500121 --build-arg PROTOC_VERSION=${PROTOC_VERSION} \
122 --build-arg PROTOC_SHA256SUM=${PROTOC_SHA256SUM} \
123 --build-arg PROTOC_GEN_GO_VERSION=${PROTOC_GEN_GO_VERSION} \
Kent Hagerman1f99b662020-03-10 17:22:11 -0400124 --build-arg PROTOC_GEN_GRPC_GATEWAY_VERSION=${PROTOC_GEN_GRPC_GATEWAY_VERSION} \
Andrea Campanellaa13b2c52021-04-26 11:38:51 +0000125 --build-arg PROTOC_GEN_CPP_VERSION=${PROTOC_GEN_CPP_VERSION} \
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +0000126 -t ${IMAGENAME}:${DOCKER_TAG}-protoc \
Kent Hagermanda41d742020-01-07 14:55:56 -0500127 -t ${IMAGENAME}:latest-protoc \
128 -f docker/protoc.Dockerfile .
129
Matteo Scandolo9d34a0f2021-03-29 15:26:56 -0700130onos-config-loader:
131 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +0000132 -t ${IMAGENAME}:${DOCKER_TAG}-onos-config-loader \
Matteo Scandolo9d34a0f2021-03-29 15:26:56 -0700133 -t ${IMAGENAME}:latest-onos-config-loader \
134 -f docker/onos-config-loader.Dockerfile .
135
Kent Hagermanda41d742020-01-07 14:55:56 -0500136docker-push:
137ifneq (false,$(DOCKER_LABEL_VCS_DIRTY))
138 @echo "Local repo is dirty. Refusing to push."
139 @exit 1
140endif
David K. Bainbridgee33a5bc2021-04-06 20:30:58 +0000141 ${DOCKER} push ${IMAGENAME}:${DOCKER_TAG}-go-junit-report
142 ${DOCKER} push ${IMAGENAME}:${DOCKER_TAG}-gocover-cobertura
143 ${DOCKER} push ${IMAGENAME}:${DOCKER_TAG}-golang
144 ${DOCKER} push ${IMAGENAME}:${DOCKER_TAG}-golangci-lint
145 ${DOCKER} push ${IMAGENAME}:${DOCKER_TAG}-hadolint
146 ${DOCKER} push ${IMAGENAME}:${DOCKER_TAG}-protoc
147 ${DOCKER} push ${IMAGENAME}:${DOCKER_TAG}-python
148 ${DOCKER} push ${IMAGENAME}:${DOCKER_TAG}-onos-config-loader