2020-09-22 12:13:00 +02:00
|
|
|
# Copyright 2020 Docker Compose CLI authors
|
2020-06-18 16:13:24 +02: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.
|
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
|
|
|
|
|
2021-02-22 15:27:11 +01:00
|
|
|
BINARY_FOLDER=$(shell pwd)/bin
|
2020-07-07 15:48:09 +02:00
|
|
|
GIT_TAG?=$(shell git describe --tags --match "v[0-9]*")
|
2020-08-06 15:40:36 +02:00
|
|
|
TEST_FLAGS?=
|
|
|
|
E2E_TEST?=
|
|
|
|
ifeq ($(E2E_TEST),)
|
|
|
|
else
|
|
|
|
TEST_FLAGS=-run $(E2E_TEST)
|
|
|
|
endif
|
2020-07-07 15:48:09 +02:00
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
all: compose-plugin
|
2020-04-22 10:04:11 +02:00
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
.PHONY: compose-plugin
|
2021-05-27 12:10:37 +02:00
|
|
|
compose-plugin: ## Compile the compose cli-plugin
|
|
|
|
@docker build . --target compose-plugin \
|
|
|
|
--platform local \
|
|
|
|
--build-arg BUILD_TAGS=e2e,kube \
|
|
|
|
--build-arg GIT_TAG=$(GIT_TAG) \
|
|
|
|
--output ./bin
|
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
.PHONY: e2e-compose
|
2021-12-09 10:30:05 +01:00
|
|
|
e2e-compose: ## Run end to end local tests in plugin mode. Set E2E_TEST=TestName to run a single test
|
2021-12-14 10:48:57 +01:00
|
|
|
docker compose version
|
2021-12-09 10:30:05 +01:00
|
|
|
go test $(TEST_FLAGS) -count=1 ./pkg/e2e
|
|
|
|
|
|
|
|
.PHONY: e2e-compose-standalone
|
|
|
|
e2e-compose-standalone: ## Run End to end local tests in standalone mode. Set E2E_TEST=TestName to run a single test
|
2021-12-14 10:48:57 +01:00
|
|
|
rm -f /usr/local/bin/docker-compose
|
|
|
|
cp bin/docker-compose /usr/local/bin
|
|
|
|
docker-compose version
|
2021-12-09 10:30:05 +01:00
|
|
|
go test $(TEST_FLAGS) -count=1 --tags=standalone ./pkg/e2e
|
|
|
|
|
2022-03-11 13:10:25 +01:00
|
|
|
.PHONY: mocks
|
|
|
|
mocks:
|
|
|
|
mockgen -destination pkg/mocks/mock_docker_cli.go -package mocks github.com/docker/cli/cli/command Cli
|
|
|
|
mockgen -destination pkg/mocks/mock_docker_api.go -package mocks github.com/docker/docker/client APIClient
|
2021-12-09 10:30:05 +01:00
|
|
|
|
|
|
|
.PHONY: e2e
|
|
|
|
e2e: e2e-compose e2e-compose-standalone ## Run end to end local tests in both modes. Set E2E_TEST=TestName to run a single test
|
2021-06-25 17:08:40 +02:00
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
.PHONY: cross
|
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-07-07 15:48:09 +02:00
|
|
|
--build-arg GIT_TAG=$(GIT_TAG) \
|
2020-06-02 11:53:13 +02:00
|
|
|
--output ./bin \
|
2020-04-27 10:17:10 +02:00
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
.PHONY: test
|
2020-05-04 22:31:59 +02:00
|
|
|
test: ## Run unit tests
|
2021-01-26 17:35:21 +01:00
|
|
|
@docker build --progress=plain . \
|
|
|
|
--build-arg BUILD_TAGS=kube \
|
2020-07-07 15:48:09 +02:00
|
|
|
--build-arg GIT_TAG=$(GIT_TAG) \
|
2020-06-15 17:41:59 +02:00
|
|
|
--target test
|
2020-05-01 15:27:27 +02:00
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
.PHONY: cache-clear
|
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
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
.PHONY: lint
|
2020-05-04 23:00:21 +02:00
|
|
|
lint: ## run linter(s)
|
2020-07-07 15:48:09 +02:00
|
|
|
@docker build . \
|
2021-01-26 17:35:21 +01:00
|
|
|
--build-arg BUILD_TAGS=kube,e2e \
|
2020-07-07 15:48:09 +02:00
|
|
|
--build-arg GIT_TAG=$(GIT_TAG) \
|
|
|
|
--target lint
|
2020-05-04 23:00:21 +02:00
|
|
|
|
2022-03-16 22:59:03 +01:00
|
|
|
.PHONY: docs
|
|
|
|
docs: ## generate documentation
|
2022-03-17 14:47:26 +01:00
|
|
|
$(eval $@_TMP_OUT := $(shell mktemp -d -t dockercli-output.XXXXXXXXXX))
|
|
|
|
docker build . \
|
|
|
|
--output type=local,dest=$($@_TMP_OUT) \
|
2022-03-16 22:59:03 +01:00
|
|
|
-f ./docs/docs.Dockerfile \
|
|
|
|
--target update
|
2022-03-17 14:47:26 +01:00
|
|
|
rm -rf ./docs/internal
|
|
|
|
cp -R "$($@_TMP_OUT)"/out/* ./docs/
|
|
|
|
rm -rf "$($@_TMP_OUT)"/*
|
2022-03-16 22:59:03 +01:00
|
|
|
|
|
|
|
.PHONY: validate-docs
|
|
|
|
validate-docs: ## validate the doc does not change
|
|
|
|
@docker build . \
|
|
|
|
-f ./docs/docs.Dockerfile \
|
|
|
|
--target validate
|
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
.PHONY: check-dependencies
|
2020-08-26 09:54:01 +02:00
|
|
|
check-dependencies: ## check dependency updates
|
|
|
|
go list -u -m -f '{{if not .Indirect}}{{if .Update}}{{.}}{{end}}{{end}}' all
|
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
.PHONY: validate-headers
|
2020-08-18 11:53:17 +02:00
|
|
|
validate-headers: ## Check license header for all files
|
2020-08-17 15:18:47 +02:00
|
|
|
@docker build . --target check-license-headers
|
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
.PHONY: go-mod-tidy
|
2020-12-04 17:48:15 +01:00
|
|
|
go-mod-tidy: ## Run go mod tidy in a container and output resulting go.mod and go.sum
|
|
|
|
@docker build . --target go-mod-tidy --output .
|
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
.PHONY: validate-go-mod
|
2020-08-18 11:53:17 +02:00
|
|
|
validate-go-mod: ## Validate go.mod and go.sum are up-to-date
|
|
|
|
@docker build . --target check-go-mod
|
|
|
|
|
2022-03-16 22:59:03 +01:00
|
|
|
validate: validate-go-mod validate-headers validate-docs ## Validate sources
|
2020-08-18 11:53:17 +02:00
|
|
|
|
2021-08-31 18:53:24 +02:00
|
|
|
pre-commit: validate check-dependencies lint compose-plugin test e2e-compose
|
2020-10-01 10:55:02 +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}'
|