2020-10-09 11:15:42 +03:00
|
|
|
# Copyright 2020 Docker Hub Tool authors
|
2020-09-17 16:35:31 +03:00
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
include vars.mk
|
|
|
|
export DOCKER_BUILDKIT=1
|
|
|
|
|
|
|
|
BUILD_ARGS := --build-arg GO_VERSION=$(GO_VERSION)\
|
|
|
|
--build-arg ALPINE_VERSION=$(ALPINE_VERSION)\
|
|
|
|
--build-arg GOLANGCI_LINT_VERSION=$(GOLANGCI_LINT_VERSION) \
|
|
|
|
--build-arg TAG_NAME=$(GIT_TAG_NAME) \
|
2020-10-02 19:51:15 +03:00
|
|
|
--build-arg GOTESTSUM_VERSION=$(GOTESTSUM_VERSION) \
|
|
|
|
--build-arg BINARY_NAME=$(BINARY_NAME) \
|
|
|
|
--build-arg BINARY=$(BINARY)
|
2020-09-17 16:35:31 +03:00
|
|
|
|
|
|
|
E2E_ENV := --env E2E_HUB_USERNAME \
|
|
|
|
--env E2E_HUB_TOKEN \
|
|
|
|
--env E2E_TEST_NAME
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
all: lint validate build test
|
|
|
|
|
|
|
|
.PHONY: build
|
2020-10-02 19:51:15 +03:00
|
|
|
build: ## Build the tool in a container
|
2020-09-17 16:35:31 +03:00
|
|
|
docker build $(BUILD_ARGS) . \
|
|
|
|
--output type=local,dest=./bin \
|
|
|
|
--platform local \
|
|
|
|
--target hub
|
|
|
|
|
|
|
|
.PHONY: cross
|
2020-10-02 19:51:15 +03:00
|
|
|
cross: ## Cross compile the tool binaries in a container
|
2020-09-17 16:35:31 +03:00
|
|
|
docker build $(BUILD_ARGS) . \
|
|
|
|
--output type=local,dest=./dist \
|
|
|
|
--target cross
|
|
|
|
|
|
|
|
.PHONY: install
|
2020-10-02 19:51:15 +03:00
|
|
|
install: build ## Install the tool to your /usr/local/bin/
|
|
|
|
cp bin/$(PLATFORM_BINARY) /usr/local/bin/$(BINARY)
|
2020-09-17 16:35:31 +03:00
|
|
|
|
|
|
|
.PHONY: test ## Run unit tests then end-to-end tests
|
|
|
|
test: test-unit e2e
|
|
|
|
|
|
|
|
.PHONY: e2e-build
|
|
|
|
e2e-build:
|
2020-10-02 19:51:15 +03:00
|
|
|
docker build $(BUILD_ARGS) . --target e2e -t $(BINARY_NAME):e2e
|
2020-09-17 16:35:31 +03:00
|
|
|
|
|
|
|
.PHONY: e2e
|
|
|
|
e2e: e2e-build ## Run the end-to-end tests
|
2020-10-09 20:46:49 +03:00
|
|
|
docker run $(E2E_ENV) --rm \
|
2020-10-09 19:41:51 +03:00
|
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
|
|
-v $(shell go env GOCACHE):/root/.cache/go-build \
|
|
|
|
-v $(shell go env GOMODCACHE):/go/pkg/mod \
|
|
|
|
$(BINARY_NAME):e2e
|
2020-09-17 16:35:31 +03:00
|
|
|
|
|
|
|
test-unit-build:
|
2020-10-02 19:51:15 +03:00
|
|
|
docker build $(BUILD_ARGS) . --target test-unit -t $(BINARY_NAME):test-unit
|
2020-09-17 16:35:31 +03:00
|
|
|
|
|
|
|
.PHONY: test-unit
|
|
|
|
test-unit: test-unit-build ## Run unit tests
|
2020-10-09 19:41:51 +03:00
|
|
|
docker run --rm \
|
|
|
|
-v $(shell go env GOCACHE):/root/.cache/go-build \
|
|
|
|
-v $(shell go env GOMODCACHE):/go/pkg/mod \
|
|
|
|
$(BINARY_NAME):test-unit
|
2020-09-17 16:35:31 +03:00
|
|
|
|
|
|
|
.PHONY: lint
|
|
|
|
lint: ## Run the go linter
|
|
|
|
@docker build . --target lint
|
|
|
|
|
|
|
|
.PHONY: validate-headers
|
|
|
|
validate-headers: ## Validate files license header
|
|
|
|
docker run --rm -v $(CURDIR):/work -w /work \
|
|
|
|
golang:${GO_VERSION} \
|
|
|
|
bash -c 'go get -u github.com/kunalkushwaha/ltag && ./scripts/validate/fileheader'
|
|
|
|
|
|
|
|
.PHONY: validate-go-mod
|
|
|
|
validate-go-mod: ## Validate go.mod and go.sum are up-to-date
|
|
|
|
@docker build . --target check-go-mod
|
|
|
|
|
|
|
|
.PHONY: validate
|
|
|
|
validate: validate-go-mod validate-headers ## Validate sources
|
|
|
|
|
|
|
|
.PHONY: help
|
|
|
|
help: ## Show help
|
|
|
|
@echo Please specify a build target. The choices are:
|
2020-10-05 20:46:41 +03:00
|
|
|
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":| ## "}; {printf "\033[36m%-30s\033[0m %s\n", $$2, $$NF}'
|