2020-06-18 16:13:24 +02:00
|
|
|
# Copyright 2020 The 2020 Docker, Inc.
|
|
|
|
|
|
|
|
# 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.
|
2020-04-06 16:40:40 +02:00
|
|
|
|
2020-04-22 10:04:11 +02:00
|
|
|
export DOCKER_BUILDKIT=1
|
2020-04-06 17:54:01 +02:00
|
|
|
|
2020-06-13 01:29:41 +02:00
|
|
|
UNAME_S := $(shell uname -s)
|
|
|
|
ifeq ($(UNAME_S),Linux)
|
2020-06-17 17:57:44 +02:00
|
|
|
MOBY_DOCKER=/usr/bin/docker
|
2020-06-13 01:29:41 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(UNAME_S),Darwin)
|
2020-06-17 17:57:44 +02:00
|
|
|
MOBY_DOCKER=/Applications/Docker.app/Contents/Resources/bin/docker
|
2020-06-13 01:29:41 +02:00
|
|
|
endif
|
|
|
|
|
2020-05-01 15:27:27 +02:00
|
|
|
all: cli
|
2020-04-06 16:40:40 +02:00
|
|
|
|
2020-05-04 22:31:59 +02:00
|
|
|
protos: ## Generate go code from .proto files
|
2020-05-29 11:30:12 +02:00
|
|
|
@docker build . --target protos \
|
2020-06-02 11:53:13 +02:00
|
|
|
--output ./protos
|
2020-04-22 10:04:11 +02:00
|
|
|
|
2020-05-04 22:31:59 +02:00
|
|
|
cli: ## Compile the cli
|
2020-05-29 11:30:12 +02:00
|
|
|
@docker build . --target cli \
|
|
|
|
--platform local \
|
2020-06-15 17:41:59 +02:00
|
|
|
--build-arg BUILD_TAGS=example,local \
|
2020-06-02 11:53:13 +02:00
|
|
|
--output ./bin
|
2020-04-22 10:04:11 +02:00
|
|
|
|
2020-05-04 15:10:28 +02:00
|
|
|
e2e-local: ## Run End to end local tests
|
2020-06-12 15:00:30 +02:00
|
|
|
go test -v ./tests/e2e ./tests/skip-win-ci-e2e ./local/e2e
|
2020-06-09 07:22:40 +02:00
|
|
|
|
|
|
|
e2e-win-ci: ## Run End to end local tests on windows CI, no docker for linux containers available ATM
|
|
|
|
go test -v ./tests/e2e
|
2020-05-04 15:10:28 +02:00
|
|
|
|
2020-05-05 17:55:53 +02:00
|
|
|
e2e-aci: ## Run End to end ACI tests (requires azure login)
|
2020-05-20 15:57:10 +02:00
|
|
|
go test -v ./tests/aci-e2e
|
2020-05-05 17:55:53 +02:00
|
|
|
|
2020-05-04 22:31:59 +02:00
|
|
|
cross: ## Compile the CLI for linux, darwin and windows
|
2020-06-02 11:53:13 +02:00
|
|
|
@docker build . --target cross \
|
2020-06-15 17:41:59 +02:00
|
|
|
--build-arg BUILD_TAGS \
|
2020-06-02 11:53:13 +02:00
|
|
|
--output ./bin \
|
2020-04-27 10:17:10 +02:00
|
|
|
|
2020-05-04 22:31:59 +02:00
|
|
|
test: ## Run unit tests
|
2020-06-15 17:41:59 +02:00
|
|
|
@docker build . \
|
|
|
|
--build-arg BUILD_TAGS=example,local \
|
|
|
|
--target test
|
2020-05-01 15:27:27 +02:00
|
|
|
|
2020-05-06 09:37:52 +02:00
|
|
|
cache-clear: ## Clear the builder cache
|
2020-05-01 15:27:27 +02:00
|
|
|
@docker builder prune --force --filter type=exec.cachemount --filter=unused-for=24h
|
2020-04-24 18:04:32 +02:00
|
|
|
|
2020-05-04 23:00:21 +02:00
|
|
|
lint: ## run linter(s)
|
2020-06-02 11:53:13 +02:00
|
|
|
@docker build . --target lint
|
2020-05-04 23:00:21 +02:00
|
|
|
|
2020-06-13 01:37:42 +02:00
|
|
|
serve: cli ## start server
|
|
|
|
@./bin/docker serve --address unix:///tmp/backend.sock
|
2020-06-15 17:41:59 +02:00
|
|
|
|
2020-06-17 17:57:44 +02:00
|
|
|
moby-cli-link: ## create com.docker.cli symlink if does not already exist
|
|
|
|
ln -s $(MOBY_DOCKER) /usr/local/bin/com.docker.cli
|
2020-05-19 21:46:44 +02:00
|
|
|
|
2020-05-04 22:31:59 +02:00
|
|
|
help: ## Show help
|
|
|
|
@echo Please specify a build target. The choices are:
|
2020-05-06 09:37:52 +02:00
|
|
|
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
2020-04-06 16:40:40 +02:00
|
|
|
|
2020-05-04 23:00:21 +02:00
|
|
|
FORCE:
|
|
|
|
|
2020-06-13 01:37:42 +02:00
|
|
|
.PHONY: all protos cli e2e-local cross test cache-clear lint serve classic-link help
|