traefik/Makefile

171 lines
4.6 KiB
Makefile
Raw Normal View History

SRCS = $(shell git ls-files '*.go' | grep -v '^vendor/')
2019-03-14 15:22:04 +00:00
TAG_NAME := $(shell git tag -l --contains HEAD)
SHA := $(shell git rev-parse HEAD)
VERSION_GIT := $(if $(TAG_NAME),$(TAG_NAME),$(SHA))
VERSION := $(if $(VERSION),$(VERSION),$(VERSION_GIT))
GIT_BRANCH := $(subst heads/,,$(shell git rev-parse --abbrev-ref HEAD 2>/dev/null))
2022-04-05 15:18:07 +00:00
.PHONY: default
default: binary
2022-04-05 15:18:07 +00:00
## Create the "dist" directory
dist:
mkdir -p dist
2019-03-28 10:42:06 +00:00
## Build WebUI Docker image
2022-04-05 15:18:07 +00:00
.PHONY: build-webui-image
2019-03-28 10:42:06 +00:00
build-webui-image:
docker build -t traefik-webui -f webui/Dockerfile webui
## Clean WebUI static generated assets
2022-04-05 15:18:07 +00:00
.PHONY: clean-webui
clean-webui:
rm -r webui/static
mkdir -p webui/static
2022-05-03 15:58:08 +00:00
printf 'For more information see `webui/readme.md`' > webui/static/DONT-EDIT-FILES-IN-THIS-DIRECTORY.md
2019-03-28 10:42:06 +00:00
## Generate WebUI
webui/static/index.html:
$(MAKE) build-webui-image
2022-04-15 09:56:08 +00:00
docker run --rm -v "$(PWD)/webui/static":'/src/webui/static' traefik-webui npm run build:nc
docker run --rm -v "$(PWD)/webui/static":'/src/webui/static' traefik-webui chown -R $(shell id -u):$(shell id -g) ./static
2022-04-05 15:18:07 +00:00
.PHONY: generate-webui
generate-webui: webui/static/index.html
2019-03-28 10:42:06 +00:00
## Build the binary
2022-04-05 15:18:07 +00:00
.PHONY: binary
binary: generate-webui
./script/make.sh generate binary
## Build the linux binary locally
2022-04-05 15:18:07 +00:00
.PHONY: binary-debug
binary-debug: generate-webui
GOOS=linux ./script/make.sh binary
2021-03-04 08:02:03 +00:00
## Build the binary for the standard platforms (linux, darwin, windows)
2022-04-05 15:18:07 +00:00
.PHONY: crossbinary-default
crossbinary-default: generate-webui
./script/make.sh generate crossbinary-default
2021-03-04 08:02:03 +00:00
## Build the binary for the standard platforms (linux, darwin, windows) in parallel
2022-04-05 15:18:07 +00:00
.PHONY: crossbinary-default-parallel
crossbinary-default-parallel:
$(MAKE) generate-webui
$(MAKE) crossbinary-default
2019-03-28 10:42:06 +00:00
## Run the unit and integration tests
2022-04-05 15:18:07 +00:00
.PHONY: test
test:
./script/make.sh generate test-unit binary test-integration
2019-03-28 10:42:06 +00:00
## Run the unit tests
2022-04-05 15:18:07 +00:00
.PHONY: test-unit
test-unit:
./script/make.sh generate test-unit
## Run the integration tests
2022-04-05 15:18:07 +00:00
.PHONY: test-integration
test-integration:
./script/make.sh generate binary test-integration
2019-03-28 10:42:06 +00:00
## Pull all images for integration tests
2022-04-05 15:18:07 +00:00
.PHONY: pull-images
2019-03-28 10:42:06 +00:00
pull-images:
2022-04-05 15:18:07 +00:00
grep --no-filename -E '^\s+image:' ./integration/resources/compose/*.yml \
| awk '{print $$2}' \
| sort \
| uniq \
| xargs -P 6 -n 1 docker pull
EXECUTABLES = misspell shellcheck
2019-04-01 13:30:07 +00:00
## Validate code and docs
2022-04-05 15:18:07 +00:00
.PHONY: validate-files
validate-files:
$(foreach exec,$(EXECUTABLES),\
$(if $(shell which $(exec)),,$(error "No $(exec) in PATH")))
./script/make.sh generate validate-lint validate-misspell
bash $(CURDIR)/script/validate-shell-script.sh
2019-04-01 13:30:07 +00:00
## Validate code, docs, and vendor
2022-04-05 15:18:07 +00:00
.PHONY: validate
validate:
$(foreach exec,$(EXECUTABLES),\
$(if $(shell which $(exec)),,$(error "No $(exec) in PATH")))
./script/make.sh generate validate-lint validate-misspell validate-vendor
bash $(CURDIR)/script/validate-shell-script.sh
2019-03-28 10:42:06 +00:00
## Clean up static directory and build a Docker Traefik image
2022-04-05 15:18:07 +00:00
.PHONY: build-image
build-image: clean-webui binary
docker build -t $(TRAEFIK_IMAGE) .
2022-04-05 15:18:07 +00:00
## Build a Docker Traefik image without re-building the webui
.PHONY: build-image-dirty
2019-03-28 10:42:06 +00:00
build-image-dirty: binary
docker build -t $(TRAEFIK_IMAGE) .
## Locally build traefik for linux, then shove it an alpine image, with basic tools.
2022-04-05 15:18:07 +00:00
.PHONY: build-image-debug
build-image-debug: binary-debug
docker build -t $(TRAEFIK_IMAGE) -f debug.Dockerfile .
2019-03-28 10:42:06 +00:00
## Build documentation site
2022-04-05 15:18:07 +00:00
.PHONY: docs
docs:
make -C ./docs docs
## Serve the documentation site locally
2022-04-05 15:18:07 +00:00
.PHONY: docs-serve
docs-serve:
make -C ./docs docs-serve
2017-10-11 12:46:03 +00:00
## Pull image for doc building
2022-04-05 15:18:07 +00:00
.PHONY: docs-pull-images
docs-pull-images:
make -C ./docs docs-pull-images
2021-09-02 12:40:08 +00:00
## Generate CRD clientset and CRD manifests
2022-04-05 15:18:07 +00:00
.PHONY: generate-crd
generate-crd:
@$(CURDIR)/script/code-gen-docker.sh
## Generate code from dynamic configuration https://github.com/traefik/genconf
2022-04-05 15:18:07 +00:00
.PHONY: generate-genconf
generate-genconf:
go run ./cmd/internal/gen/
2019-03-28 10:42:06 +00:00
## Create packages for the release
2022-04-05 15:18:07 +00:00
.PHONY: release-packages
release-packages: generate-webui
2019-03-14 15:22:04 +00:00
rm -rf dist
@- $(foreach os, linux darwin windows freebsd openbsd, \
goreleaser release --skip-publish -p 2 --timeout="90m" --config $(shell go run ./internal/release $(os)); \
go clean -cache; \
)
cat dist/**/*_checksums.txt >> dist/traefik_${VERSION}_checksums.txt
rm dist/**/*_checksums.txt
tar cfz dist/traefik-${VERSION}.src.tar.gz \
2019-03-14 15:22:04 +00:00
--exclude-vcs \
--exclude .idea \
--exclude .travis \
--exclude .semaphoreci \
--exclude .github \
--exclude dist .
chown -R $(shell id -u):$(shell id -g) dist/
2019-03-28 10:42:06 +00:00
## Format the Code
2022-04-05 15:18:07 +00:00
.PHONY: fmt
2019-03-28 10:42:06 +00:00
fmt:
gofmt -s -l -w $(SRCS)
2022-04-05 15:18:07 +00:00
.PHONY: run-dev
2019-03-28 10:42:06 +00:00
run-dev:
go generate
GO111MODULE=on go build ./cmd/traefik
2019-03-28 10:42:06 +00:00
./traefik