2015-09-15 19:38:54 +00:00
|
|
|
.PHONY: all
|
|
|
|
|
|
|
|
TRAEFIK_ENVS := \
|
|
|
|
-e OS_ARCH_ARG \
|
|
|
|
-e OS_PLATFORM_ARG \
|
2015-11-05 14:14:25 +00:00
|
|
|
-e TESTFLAGS \
|
2016-03-23 22:06:22 +00:00
|
|
|
-e VERBOSE \
|
2016-07-05 19:03:37 +00:00
|
|
|
-e VERSION \
|
2017-04-24 16:11:34 +00:00
|
|
|
-e CODENAME \
|
2017-05-17 13:22:44 +00:00
|
|
|
-e TESTDIRS \
|
2017-04-10 07:28:00 +00:00
|
|
|
-e CI \
|
|
|
|
-e CONTAINER=DOCKER # Indicator for integration tests that we are running inside a container.
|
2016-01-29 19:34:17 +00:00
|
|
|
|
2017-09-08 08:26:03 +00:00
|
|
|
SRCS = $(shell git ls-files '*.go' | grep -v '^vendor/')
|
2016-01-29 19:34:17 +00:00
|
|
|
|
2015-09-27 13:56:53 +00:00
|
|
|
BIND_DIR := "dist"
|
2016-02-24 15:43:39 +00:00
|
|
|
TRAEFIK_MOUNT := -v "$(CURDIR)/$(BIND_DIR):/go/src/github.com/containous/traefik/$(BIND_DIR)"
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2016-10-31 02:36:31 +00:00
|
|
|
GIT_BRANCH := $(subst heads/,,$(shell git rev-parse --abbrev-ref HEAD 2>/dev/null))
|
2017-05-28 04:29:27 +00:00
|
|
|
TRAEFIK_DEV_IMAGE := traefik-dev$(if $(GIT_BRANCH),:$(subst /,-,$(GIT_BRANCH)))
|
2015-09-16 16:07:58 +00:00
|
|
|
REPONAME := $(shell echo $(REPO) | tr '[:upper:]' '[:lower:]')
|
2016-02-24 15:43:39 +00:00
|
|
|
TRAEFIK_IMAGE := $(if $(REPONAME),$(REPONAME),"containous/traefik")
|
2017-10-30 09:02:03 +00:00
|
|
|
INTEGRATION_OPTS := $(if $(MAKE_DOCKER_HOST),-e "DOCKER_HOST=$(MAKE_DOCKER_HOST)", -e "TEST_CONTAINER=1" -v "/var/run/docker.sock:/var/run/docker.sock")
|
2017-10-11 12:46:03 +00:00
|
|
|
TRAEFIK_DOC_IMAGE := traefik-docs
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2016-05-23 14:07:35 +00:00
|
|
|
DOCKER_BUILD_ARGS := $(if $(DOCKER_VERSION), "--build-arg=DOCKER_VERSION=$(DOCKER_VERSION)",)
|
2017-05-03 04:00:05 +00:00
|
|
|
DOCKER_RUN_OPTS := $(TRAEFIK_ENVS) $(TRAEFIK_MOUNT) "$(TRAEFIK_DEV_IMAGE)"
|
|
|
|
DOCKER_RUN_TRAEFIK := docker run $(INTEGRATION_OPTS) -it $(DOCKER_RUN_OPTS)
|
|
|
|
DOCKER_RUN_TRAEFIK_NOTTY := docker run $(INTEGRATION_OPTS) -i $(DOCKER_RUN_OPTS)
|
2017-10-11 12:46:03 +00:00
|
|
|
DOCKER_RUN_DOC_PORT := 8000
|
|
|
|
DOCKER_RUN_DOC_MOUNT := -v $(CURDIR):/mkdocs
|
|
|
|
DOCKER_RUN_DOC_OPTS := --rm $(DOCKER_RUN_DOC_MOUNT) -p $(DOCKER_RUN_DOC_PORT):8000
|
2017-05-03 04:00:05 +00:00
|
|
|
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2015-09-16 16:07:58 +00:00
|
|
|
print-%: ; @echo $*=$($*)
|
|
|
|
|
2015-09-15 19:38:54 +00:00
|
|
|
default: binary
|
|
|
|
|
2016-04-07 14:24:52 +00:00
|
|
|
all: generate-webui build ## validate all checks, build linux binary, run all tests\ncross non-linux binaries
|
2015-10-30 07:55:08 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK) ./script/make.sh
|
|
|
|
|
2016-04-07 14:24:52 +00:00
|
|
|
binary: generate-webui build ## build the linux binary
|
2015-09-15 19:38:54 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK) ./script/make.sh generate binary
|
|
|
|
|
2016-04-07 14:24:52 +00:00
|
|
|
crossbinary: generate-webui build ## cross build the non-linux binaries
|
2015-09-27 13:56:53 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK) ./script/make.sh generate crossbinary
|
|
|
|
|
2017-05-03 04:00:05 +00:00
|
|
|
crossbinary-parallel:
|
|
|
|
$(MAKE) generate-webui
|
2017-05-04 07:31:39 +00:00
|
|
|
$(MAKE) build crossbinary-default crossbinary-others
|
2017-05-03 04:00:05 +00:00
|
|
|
|
|
|
|
crossbinary-default: generate-webui build
|
|
|
|
$(DOCKER_RUN_TRAEFIK_NOTTY) ./script/make.sh generate crossbinary-default
|
|
|
|
|
2017-05-04 07:31:39 +00:00
|
|
|
crossbinary-default-parallel:
|
|
|
|
$(MAKE) generate-webui
|
|
|
|
$(MAKE) build crossbinary-default
|
|
|
|
|
2017-05-03 04:00:05 +00:00
|
|
|
crossbinary-others: generate-webui build
|
|
|
|
$(DOCKER_RUN_TRAEFIK_NOTTY) ./script/make.sh generate crossbinary-others
|
|
|
|
|
2017-05-04 07:31:39 +00:00
|
|
|
crossbinary-others-parallel:
|
|
|
|
$(MAKE) generate-webui
|
|
|
|
$(MAKE) build crossbinary-others
|
|
|
|
|
2016-04-07 14:24:52 +00:00
|
|
|
test: build ## run the unit and integration tests
|
2015-09-27 13:56:53 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK) ./script/make.sh generate test-unit binary test-integration
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2016-04-07 14:24:52 +00:00
|
|
|
test-unit: build ## run the unit tests
|
2015-09-15 19:38:54 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK) ./script/make.sh generate test-unit
|
|
|
|
|
2016-04-07 14:24:52 +00:00
|
|
|
test-integration: build ## run the integration tests
|
2017-02-07 14:07:51 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK) ./script/make.sh generate binary test-integration
|
2017-10-30 09:02:03 +00:00
|
|
|
TEST_HOST=1 ./script/make.sh test-integration
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2016-04-07 14:24:52 +00:00
|
|
|
validate: build ## validate gofmt, golint and go vet
|
2017-11-20 14:26:03 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK) ./script/make.sh validate-glide validate-gofmt validate-govet validate-golint validate-misspell validate-vendor validate-autogen
|
2015-09-15 19:38:54 +00:00
|
|
|
|
|
|
|
build: dist
|
2016-05-23 14:07:35 +00:00
|
|
|
docker build $(DOCKER_BUILD_ARGS) -t "$(TRAEFIK_DEV_IMAGE)" -f build.Dockerfile .
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2016-01-25 21:23:56 +00:00
|
|
|
build-webui:
|
|
|
|
docker build -t traefik-webui -f webui/Dockerfile webui
|
|
|
|
|
2015-10-01 10:04:25 +00:00
|
|
|
build-no-cache: dist
|
|
|
|
docker build --no-cache -t "$(TRAEFIK_DEV_IMAGE)" -f build.Dockerfile .
|
|
|
|
|
2016-04-07 14:24:52 +00:00
|
|
|
shell: build ## start a shell inside the build env
|
2015-09-22 09:29:41 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK) /bin/bash
|
|
|
|
|
2017-06-13 13:16:08 +00:00
|
|
|
image-dirty: binary ## build a docker traefik image
|
2015-09-15 19:38:54 +00:00
|
|
|
docker build -t $(TRAEFIK_IMAGE) .
|
|
|
|
|
2017-06-13 13:16:08 +00:00
|
|
|
image: clear-static binary ## clean up static directory and build a docker traefik image
|
|
|
|
docker build -t $(TRAEFIK_IMAGE) .
|
|
|
|
|
2017-10-11 12:46:03 +00:00
|
|
|
docs: docs-image
|
|
|
|
docker run $(DOCKER_RUN_DOC_OPTS) $(TRAEFIK_DOC_IMAGE) mkdocs serve
|
|
|
|
|
|
|
|
docs-image:
|
|
|
|
docker build -t $(TRAEFIK_DOC_IMAGE) -f docs.Dockerfile .
|
|
|
|
|
2017-06-13 13:16:08 +00:00
|
|
|
clear-static:
|
|
|
|
rm -rf static
|
|
|
|
|
2015-09-15 19:38:54 +00:00
|
|
|
dist:
|
|
|
|
mkdir dist
|
2015-09-19 11:02:59 +00:00
|
|
|
|
|
|
|
run-dev:
|
2015-09-24 09:39:18 +00:00
|
|
|
go generate
|
2017-10-06 08:44:03 +00:00
|
|
|
go build ./cmd/traefik
|
2015-09-19 11:02:59 +00:00
|
|
|
./traefik
|
2016-01-20 21:45:51 +00:00
|
|
|
|
2016-02-13 15:01:29 +00:00
|
|
|
generate-webui: build-webui
|
|
|
|
if [ ! -d "static" ]; then \
|
|
|
|
mkdir -p static; \
|
2016-07-23 17:59:54 +00:00
|
|
|
docker run --rm -v "$$PWD/static":'/src/static' traefik-webui npm run build; \
|
2016-02-13 15:01:29 +00:00
|
|
|
echo 'For more informations show `webui/readme.md`' > $$PWD/static/DONT-EDIT-FILES-IN-THIS-DIRECTORY.md; \
|
|
|
|
fi
|
2016-01-29 19:34:17 +00:00
|
|
|
|
|
|
|
lint:
|
2016-02-25 17:30:13 +00:00
|
|
|
script/validate-golint
|
2016-01-29 19:34:17 +00:00
|
|
|
|
|
|
|
fmt:
|
2016-02-13 15:01:29 +00:00
|
|
|
gofmt -s -l -w $(SRCS)
|
2017-04-17 14:38:05 +00:00
|
|
|
|
|
|
|
pull-images:
|
2017-10-02 12:22:03 +00:00
|
|
|
grep --no-filename -E '^\s+image:' ./integration/resources/compose/*.yml | awk '{print $$2}' | sort | uniq | xargs -P 6 -n 1 docker pull
|
2017-04-17 14:38:05 +00:00
|
|
|
|
2016-04-07 14:24:52 +00:00
|
|
|
help: ## this help
|
|
|
|
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
|