Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 1 | # 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 |
| 16 | SHELL = bash -e -o pipefail |
| 17 | |
| 18 | ## Variables |
| 19 | VERSION ?= $(shell cat ./VERSION) |
| 20 | GO_JUNIT_REPORT_VERSION ?= "0.9.1" |
| 21 | GOCOVER_COBERTURA_VERSION ?= "v0.0.0-20180217150009-aaee18c8195c" |
| 22 | GOLANG_VERSION ?= "1.12.15" |
| 23 | GOLANGCI_LINT_VERSION ?= "1.17.0" |
| 24 | HADOLINT_VERSION ?= "1.17.4" |
| 25 | PROTOC_VERSION ?= "3.7.0" |
| 26 | PROTOC_SHA256SUM ?= "a1b8ed22d6dc53c5b8680a6f1760a305b33ef471bece482e92728f00ba2a2969" |
| 27 | PROTOC_GEN_GO_VERSION ?= "1.3.1" |
| 28 | |
| 29 | # Docker related |
| 30 | DOCKER_LABEL_VCS_DIRTY = false |
| 31 | ifneq ($(shell git status --porcelain | wc -l | sed -e 's/ //g'),0) |
| 32 | DOCKER_LABEL_VCS_DIRTY = true |
| 33 | VERSION = latest |
| 34 | endif |
| 35 | |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 36 | DOCKER ?= docker |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 37 | DOCKER_EXTRA_ARGS ?= |
Kent Hagerman | c548705 | 2020-01-28 15:36:19 -0500 | [diff] [blame] | 38 | DOCKER_REGISTRY ?= |
| 39 | DOCKER_REPOSITORY ?= voltha/ |
| 40 | IMAGENAME := ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-ci-tools |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 41 | |
| 42 | ## Docker labels. Only set ref and commit date if committed |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 43 | DOCKER_LABEL_VCS_URL = $(shell git remote get-url "$(shell git remote)" 2>/dev/null) |
Kent Hagerman | c548705 | 2020-01-28 15:36:19 -0500 | [diff] [blame] | 44 | DOCKER_LABEL_VCS_REF = $(shell git rev-parse HEAD) |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 45 | DOCKER_LABEL_BUILD_DATE = $(shell date -u "+%Y-%m-%dT%H:%M:%SZ") |
Kent Hagerman | c548705 | 2020-01-28 15:36:19 -0500 | [diff] [blame] | 46 | DOCKER_LABEL_COMMIT_DATE = $(shell git show -s --format=%cd --date=iso-strict HEAD) |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 47 | |
| 48 | DOCKER_BUILD_ARGS ?= \ |
| 49 | ${DOCKER_EXTRA_ARGS} \ |
| 50 | --build-arg org_label_schema_version="${VERSION}" \ |
| 51 | --build-arg org_label_schema_vcs_url="${DOCKER_LABEL_VCS_URL}" \ |
| 52 | --build-arg org_label_schema_vcs_ref="${DOCKER_LABEL_VCS_REF}" \ |
| 53 | --build-arg org_label_schema_build_date="${DOCKER_LABEL_BUILD_DATE}" \ |
| 54 | --build-arg org_opencord_vcs_commit_date="${DOCKER_LABEL_COMMIT_DATE}" \ |
| 55 | --build-arg org_opencord_vcs_dirty="${DOCKER_LABEL_VCS_DIRTY}" |
| 56 | |
| 57 | ## runnable tool containers |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 58 | HADOLINT = ${DOCKER} run --rm --user $$(id -u):$$(id -g) -v $$PWD:/app ${IMAGENAME}:${VERSION}-hadolint hadolint |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 59 | |
Kent Hagerman | c548705 | 2020-01-28 15:36:19 -0500 | [diff] [blame] | 60 | lint: docker-lint |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 61 | |
| 62 | docker-lint: hadolint |
| 63 | @echo "Linting Dockerfiles..." |
| 64 | @${HADOLINT} $(shell ls docker/*.Dockerfile) |
| 65 | @echo "Dockerfiles linted OK" |
| 66 | |
| 67 | |
| 68 | build: docker-build |
| 69 | |
| 70 | docker-build: go-junit-report gocover-cobertura golang golangci-lint hadolint protoc |
| 71 | |
| 72 | go-junit-report: |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 73 | ${DOCKER} build ${DOCKER_BUILD_ARGS} \ |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 74 | --build-arg GO_JUNIT_REPORT_VERSION=${GO_JUNIT_REPORT_VERSION} \ |
| 75 | -t ${IMAGENAME}:${VERSION}-go-junit-report \ |
| 76 | -t ${IMAGENAME}:latest-go-junit-report \ |
| 77 | -f docker/go-junit-report.Dockerfile . |
| 78 | |
| 79 | gocover-cobertura: |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 80 | ${DOCKER} build ${DOCKER_BUILD_ARGS} \ |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 81 | --build-arg GOCOVER_COBERTURA_VERSION=${GOCOVER_COBERTURA_VERSION} \ |
| 82 | -t ${IMAGENAME}:${VERSION}-gocover-cobertura \ |
| 83 | -t ${IMAGENAME}:latest-gocover-cobertura \ |
| 84 | -f docker/gocover-cobertura.Dockerfile . |
| 85 | |
| 86 | golang: |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 87 | ${DOCKER} build ${DOCKER_BUILD_ARGS} \ |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 88 | --build-arg GOLANG_VERSION=${GOLANG_VERSION} \ |
| 89 | -t ${IMAGENAME}:${VERSION}-golang \ |
| 90 | -t ${IMAGENAME}:latest-golang \ |
| 91 | -f docker/golang.Dockerfile . |
| 92 | |
| 93 | golangci-lint: |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 94 | ${DOCKER} build ${DOCKER_BUILD_ARGS} \ |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 95 | --build-arg GOLANGCI_LINT_VERSION=${GOLANGCI_LINT_VERSION} \ |
| 96 | -t ${IMAGENAME}:${VERSION}-golangci-lint \ |
| 97 | -t ${IMAGENAME}:latest-golangci-lint \ |
| 98 | -f docker/golangci-lint.Dockerfile . |
| 99 | |
| 100 | hadolint: |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 101 | ${DOCKER} build ${DOCKER_BUILD_ARGS} \ |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 102 | --build-arg HADOLINT_VERSION=${HADOLINT_VERSION} \ |
| 103 | -t ${IMAGENAME}:${VERSION}-hadolint \ |
| 104 | -t ${IMAGENAME}:latest-hadolint \ |
| 105 | -f docker/hadolint.Dockerfile . |
| 106 | |
| 107 | protoc: |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 108 | ${DOCKER} build ${DOCKER_BUILD_ARGS} \ |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 109 | --build-arg PROTOC_VERSION=${PROTOC_VERSION} \ |
| 110 | --build-arg PROTOC_SHA256SUM=${PROTOC_SHA256SUM} \ |
| 111 | --build-arg PROTOC_GEN_GO_VERSION=${PROTOC_GEN_GO_VERSION} \ |
| 112 | -t ${IMAGENAME}:${VERSION}-protoc \ |
| 113 | -t ${IMAGENAME}:latest-protoc \ |
| 114 | -f docker/protoc.Dockerfile . |
| 115 | |
| 116 | docker-push: |
| 117 | ifneq (false,$(DOCKER_LABEL_VCS_DIRTY)) |
| 118 | @echo "Local repo is dirty. Refusing to push." |
| 119 | @exit 1 |
| 120 | endif |
Zack Williams | fd62094 | 2020-01-28 11:18:38 -0700 | [diff] [blame] | 121 | ${DOCKER} push ${IMAGENAME}:${VERSION}-go-junit-report |
| 122 | ${DOCKER} push ${IMAGENAME}:${VERSION}-gocover-cobertura |
| 123 | ${DOCKER} push ${IMAGENAME}:${VERSION}-golang |
| 124 | ${DOCKER} push ${IMAGENAME}:${VERSION}-golangci-lint |
| 125 | ${DOCKER} push ${IMAGENAME}:${VERSION}-hadolint |
| 126 | ${DOCKER} push ${IMAGENAME}:${VERSION}-protoc |
Kent Hagerman | da41d74 | 2020-01-07 14:55:56 -0500 | [diff] [blame] | 127 | |