blob: db3ca9384f1e3a7a8e6fb54f9b6a3ae0f9e95923 [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)
20GO_JUNIT_REPORT_VERSION ?= "0.9.1"
21GOCOVER_COBERTURA_VERSION ?= "v0.0.0-20180217150009-aaee18c8195c"
Zack Williams88200d32020-04-02 13:36:41 -070022GOLANG_VERSION ?= "1.13.9"
Kent Hagerman1f99b662020-03-10 17:22:11 -040023GOLANGCI_LINT_VERSION ?= "1.23.6"
24HADOLINT_VERSION ?= "1.17.5"
25PROTOC_VERSION ?= "3.7.0"
26PROTOC_SHA256SUM ?= "a1b8ed22d6dc53c5b8680a6f1760a305b33ef471bece482e92728f00ba2a2969"
27PROTOC_GEN_GO_VERSION ?= "1.3.2"
Zack Williams88200d32020-04-02 13:36:41 -070028PROTOC_GEN_GRPC_GATEWAY_VERSION ?= "1.14.3"
Kent Hagermanda41d742020-01-07 14:55:56 -050029
30# Docker related
31DOCKER_LABEL_VCS_DIRTY = false
32ifneq ($(shell git status --porcelain | wc -l | sed -e 's/ //g'),0)
33 DOCKER_LABEL_VCS_DIRTY = true
34 VERSION = latest
35endif
36
Zack Williamsfd620942020-01-28 11:18:38 -070037DOCKER ?= docker
Kent Hagermanda41d742020-01-07 14:55:56 -050038DOCKER_EXTRA_ARGS ?=
Kent Hagermanc5487052020-01-28 15:36:19 -050039DOCKER_REGISTRY ?=
40DOCKER_REPOSITORY ?= voltha/
41IMAGENAME := ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-ci-tools
Kent Hagermanda41d742020-01-07 14:55:56 -050042
43## Docker labels. Only set ref and commit date if committed
Zack Williamsfd620942020-01-28 11:18:38 -070044DOCKER_LABEL_VCS_URL = $(shell git remote get-url "$(shell git remote)" 2>/dev/null)
Kent Hagermanc5487052020-01-28 15:36:19 -050045DOCKER_LABEL_VCS_REF = $(shell git rev-parse HEAD)
Zack Williamsfd620942020-01-28 11:18:38 -070046DOCKER_LABEL_BUILD_DATE = $(shell date -u "+%Y-%m-%dT%H:%M:%SZ")
Kent Hagermanc5487052020-01-28 15:36:19 -050047DOCKER_LABEL_COMMIT_DATE = $(shell git show -s --format=%cd --date=iso-strict HEAD)
Kent Hagermanda41d742020-01-07 14:55:56 -050048
49DOCKER_BUILD_ARGS ?= \
50 ${DOCKER_EXTRA_ARGS} \
51 --build-arg org_label_schema_version="${VERSION}" \
52 --build-arg org_label_schema_vcs_url="${DOCKER_LABEL_VCS_URL}" \
53 --build-arg org_label_schema_vcs_ref="${DOCKER_LABEL_VCS_REF}" \
54 --build-arg org_label_schema_build_date="${DOCKER_LABEL_BUILD_DATE}" \
55 --build-arg org_opencord_vcs_commit_date="${DOCKER_LABEL_COMMIT_DATE}" \
56 --build-arg org_opencord_vcs_dirty="${DOCKER_LABEL_VCS_DIRTY}"
57
58## runnable tool containers
Zack Williamsfd620942020-01-28 11:18:38 -070059HADOLINT = ${DOCKER} run --rm --user $$(id -u):$$(id -g) -v $$PWD:/app ${IMAGENAME}:${VERSION}-hadolint hadolint
Kent Hagermanda41d742020-01-07 14:55:56 -050060
Kent Hagermanc5487052020-01-28 15:36:19 -050061lint: docker-lint
Kent Hagermanda41d742020-01-07 14:55:56 -050062
63docker-lint: hadolint
64 @echo "Linting Dockerfiles..."
65 @${HADOLINT} $(shell ls docker/*.Dockerfile)
66 @echo "Dockerfiles linted OK"
67
68
69build: docker-build
70
Andrey Pozolotin49a35452020-08-14 22:14:51 +020071docker-build: go-junit-report gocover-cobertura golang golangci-lint hadolint protoc python
Kent Hagermanda41d742020-01-07 14:55:56 -050072
73go-junit-report:
Zack Williamsfd620942020-01-28 11:18:38 -070074 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
Kent Hagermanda41d742020-01-07 14:55:56 -050075 --build-arg GO_JUNIT_REPORT_VERSION=${GO_JUNIT_REPORT_VERSION} \
76 -t ${IMAGENAME}:${VERSION}-go-junit-report \
77 -t ${IMAGENAME}:latest-go-junit-report \
78 -f docker/go-junit-report.Dockerfile .
79
80gocover-cobertura:
Zack Williamsfd620942020-01-28 11:18:38 -070081 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
Kent Hagermanda41d742020-01-07 14:55:56 -050082 --build-arg GOCOVER_COBERTURA_VERSION=${GOCOVER_COBERTURA_VERSION} \
83 -t ${IMAGENAME}:${VERSION}-gocover-cobertura \
84 -t ${IMAGENAME}:latest-gocover-cobertura \
85 -f docker/gocover-cobertura.Dockerfile .
86
87golang:
Zack Williamsfd620942020-01-28 11:18:38 -070088 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
Kent Hagermanda41d742020-01-07 14:55:56 -050089 --build-arg GOLANG_VERSION=${GOLANG_VERSION} \
90 -t ${IMAGENAME}:${VERSION}-golang \
91 -t ${IMAGENAME}:latest-golang \
92 -f docker/golang.Dockerfile .
93
Andrey Pozolotin49a35452020-08-14 22:14:51 +020094python:
95 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
96 -t ${IMAGENAME}:${VERSION}-python \
97 -t ${IMAGENAME}:latest-python \
98 -f docker/python.Dockerfile .
99
Kent Hagermanda41d742020-01-07 14:55:56 -0500100golangci-lint:
Zack Williamsfd620942020-01-28 11:18:38 -0700101 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
Kent Hagermanda41d742020-01-07 14:55:56 -0500102 --build-arg GOLANGCI_LINT_VERSION=${GOLANGCI_LINT_VERSION} \
103 -t ${IMAGENAME}:${VERSION}-golangci-lint \
104 -t ${IMAGENAME}:latest-golangci-lint \
105 -f docker/golangci-lint.Dockerfile .
106
107hadolint:
Zack Williamsfd620942020-01-28 11:18:38 -0700108 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
Kent Hagermanda41d742020-01-07 14:55:56 -0500109 --build-arg HADOLINT_VERSION=${HADOLINT_VERSION} \
110 -t ${IMAGENAME}:${VERSION}-hadolint \
111 -t ${IMAGENAME}:latest-hadolint \
112 -f docker/hadolint.Dockerfile .
113
114protoc:
Zack Williamsfd620942020-01-28 11:18:38 -0700115 ${DOCKER} build ${DOCKER_BUILD_ARGS} \
Kent Hagermanda41d742020-01-07 14:55:56 -0500116 --build-arg PROTOC_VERSION=${PROTOC_VERSION} \
117 --build-arg PROTOC_SHA256SUM=${PROTOC_SHA256SUM} \
118 --build-arg PROTOC_GEN_GO_VERSION=${PROTOC_GEN_GO_VERSION} \
Kent Hagerman1f99b662020-03-10 17:22:11 -0400119 --build-arg PROTOC_GEN_GRPC_GATEWAY_VERSION=${PROTOC_GEN_GRPC_GATEWAY_VERSION} \
Kent Hagermanda41d742020-01-07 14:55:56 -0500120 -t ${IMAGENAME}:${VERSION}-protoc \
121 -t ${IMAGENAME}:latest-protoc \
122 -f docker/protoc.Dockerfile .
123
124docker-push:
125ifneq (false,$(DOCKER_LABEL_VCS_DIRTY))
126 @echo "Local repo is dirty. Refusing to push."
127 @exit 1
128endif
Zack Williamsfd620942020-01-28 11:18:38 -0700129 ${DOCKER} push ${IMAGENAME}:${VERSION}-go-junit-report
130 ${DOCKER} push ${IMAGENAME}:${VERSION}-gocover-cobertura
131 ${DOCKER} push ${IMAGENAME}:${VERSION}-golang
132 ${DOCKER} push ${IMAGENAME}:${VERSION}-golangci-lint
133 ${DOCKER} push ${IMAGENAME}:${VERSION}-hadolint
134 ${DOCKER} push ${IMAGENAME}:${VERSION}-protoc
Andrey Pozolotin49a35452020-08-14 22:14:51 +0200135 ${DOCKER} push ${IMAGENAME}:${VERSION}-python
Kent Hagermanda41d742020-01-07 14:55:56 -0500136